Assignment

Let’s start by loading in a library that has some string functions and then do some smaller stuff just to warm up.

library(stringr)

In the code chunk below, create a variable called first_name and assign it a value equal to your name.

first_name <- "Rodney"
first_name
[1] "Rodney"

Now, how any characters are in your name?

str_length( first_name )
[1] 6

Assign the variable last_name the value of your last name.

last_name <- "Dyer"

And in the following chunck, make a variable named full_name that combines your first_name and last_name.

### Your full name
str_c(first_name, last_name, sep=" ")
[1] "Rodney Dyer"

Now pay attention, this is very important. Take the output of the last chunk (e.g., your full name), and copy it to the 3\(^{rd}\) line of this document where it say author: "Your Name Here"! That way I know whose work this is! Nice Job!1

String Operations

So we’ll have a little fun with this one. Here are the lyrics to a popular song from the Beetles, entitled Hey Jude.

heyJude <- "Hey Jude don't make it bad Take a sad song and make it better Remember to let her into your heart Then you can start to make it better Hey Jude don't be afraid You were made to go out and get her The minute you let her under your skin Then you begin to make it better And anytime you feel the pain Hey Jude refrain Don't carry the world upon your shoulders For well you know that it's a fool Who plays it cool By making his world a little colder Na na na na na Na na na na Hey Jude don't let me down You have found her now go and get her let it out and let it in Remember to let her into your heart hey Jude Then you can start to make it better So let it out and let it in Hey Jude begin You're waiting for someone to perform with And don't you know that it's just you Hey Jude you'll do The movement you need is on your shoulder Na na na na na Na na na na yeah Hey Jude don't make it bad Take a sad song and make it better Remember to let her under your skin Then you'll begin to make it better Better better better better better ah Na na na na na na na yeah Yeah yeah yeah yeah yeah yeah Na na na na hey Jude Na na na na na na na Na na na na hey Jude Na na na na na na na Na na na na hey Jude Na na na na na na na Na na na na hey Jude Jude Jude Judy Judy Judy Judy ow wow Na na na na na na na my my my Na na na na hey Jude Jude Jude Jude Jude Jude Na na na na na na na yeah yeah yeah Na na na na hey Jude yeah you know you can make it Jude Jude you're not gonna break it Na na na na na na na don't make it bad Jude take a sad song and make it better Na na na na hey Jude oh Jude Jude hey Jude wa Na na na na na na na oh Jude Na na na na hey Jude hey hey hey hey Na na na na na na na hey hey Na na na na hey Jude now Jude Jude Jude Jude Jude Na na na na na na na Jude yeah yeah yeah yeah Na na na na hey Jude Na na na na na na na Na na na na hey Jude na na na na na na na na na Na na na na na na na Na na na na hey Jude Na na na na na na na Na na na na hey Jude Na na na na na na na yeah make it Jude Na na na na hey Jude yeah yeah yeah yeah yeah Yeah Yeah Yeah Yeah Na na na na na na na yeah yeah yeah yeah Yeah Yeah Na na na na hey Jude Na na na na na na na Na na na na hey Jude Na na na na na na na Na na na na hey Jude Na na na na na na na Na na na na hey Jude"

I thought it would be interesting to take a look at word frequencies for this song. To do so, we should probably first make everything the same case (in this case, I’ll make it all lower case using the function tolower().

## To remove case differences.
lyrics <- tolower(heyJude)

Splitting Text into Words

In the lecture, I showed how to split a string into sections using the function str_split() function. Split the lyrics into a single vector as I showed in the recorded lecture and assign it to a variable named words. In the talk I point out that you should add the optional argument simplify=TRUE to the optional values in the str_split() function, make sure to do that here as well.

### Split the lyrics into a vector
words <- str_split(lyrics, pattern = " ", simplify = TRUE )

Summarizing Word Orders

Now here is something new. The function table() takes a vector of values and tallies the count of each element. In this case, it will allow you to count each word in that song. Make a new variable named word.freqs to hold the result and then print it out (by just typing the variable name by itself in the chunk and running the chunk).

### Make a table of the words to get counts
t <- table( words )
t
words
        a    afraid        ah       and 
        5         1         1         9 
  anytime       bad        be     begin 
        1         3         1         3 
   better     break        by       can 
       12         1         1         3 
    carry    colder      cool        do 
        1         1         1         1 
    don't      down      feel      fool 
        7         1         1         1 
      for     found       get        go 
        2         1         2         2 
    gonna      have     heart       her 
        1         1         2         7 
      hey       his        in      into 
       33         1         2         2 
       is        it      it's      jude 
        1        18         2        47 
     judy      just      know       let 
        4         1         3         9 
   little      made      make    making 
        1         1        12         1 
       me    minute  movement        my 
        1         1         1         3 
       na      need       not       now 
      225         1         1         2 
       oh        on       out        ow 
        2         1         3         1 
     pain   perform     plays   refrain 
        1         1         1         1 
 remember       sad  shoulder shoulders 
        3         3         1         1 
     skin        so   someone      song 
        2         1         1         3 
    start      take      that       the 
        2         3         2         4 
     then        to     under      upon 
        4         9         2         1 
       wa   waiting      well      were 
        1         1         1         1 
      who      with     world       wow 
        1         1         2         1 
     yeah       you    you'll    you're 
       32        13         2         2 
     your 
        6 

Here is another new thing. You can use the sort() function to sort the word list by the magnitude of occurrences. It also has an optional argument decreasing that you can set to TRUE and have the results presented in decreasing order. (You can see the help file for sort() by typing in the console ?sort and hitting return).

### Sort the words in decreasing order.
rev( sort( t ) )
words
       na      jude       hey      yeah 
      225        47        33        32 
       it       you      make    better 
       18        13        12        12 
       to       let       and       her 
        9         9         9         7 
    don't      your         a      then 
        7         6         5         4 
      the      judy      take      song 
        4         4         3         3 
      sad  remember       out        my 
        3         3         3         3 
     know       can     begin       bad 
        3         3         3         3 
   you're    you'll     world     under 
        2         2         2         2 
     that     start      skin        oh 
        2         2         2         2 
      now      it's      into        in 
        2         2         2         2 
    heart        go       get       for 
        2         2         2         2 
      wow      with       who      were 
        1         1         1         1 
     well   waiting        wa      upon 
        1         1         1         1 
  someone        so shoulders  shoulder 
        1         1         1         1 
  refrain     plays   perform      pain 
        1         1         1         1 
       ow        on       not      need 
        1         1         1         1 
 movement    minute        me    making 
        1         1         1         1 
     made    little      just        is 
        1         1         1         1 
      his      have     gonna     found 
        1         1         1         1 
     fool      feel      down        do 
        1         1         1         1 
     cool    colder     carry        by 
        1         1         1         1 
    break        be   anytime        ah 
        1         1         1         1 
   afraid 
        1 

What are the five most common words in that song?

List of words in decreasing frequency (replace the {XXXX} stuff below to answer:

  1. {most common has X} na of 225
  2. {second most common has X} jude of 47
  3. {third most common has X} hey from 33
  4. {fourth most common has X} yeah has 32
  5. {fifth most common has X} it has 18

Finding Locations in the String

Where is it the location in the full lyrics of the song where “Jude” is repeated three times?

str_view(heyJude, "Jude Jude Jude" )
Registered S3 method overwritten by 'htmlwidgets':
  method           from         
  print.htmlwidget tools:rstudio

That was easy, now let’s do something more in-depth. The Clean Water Act of 1977 is an important document in our nations recognition that we may need to stop being jerks to the environment. There is a textual copy found on my github site at the following url.

Load in this document and we can do some textual findings.

clean_water_act <- "https://github.com/dyerlab/ENVS-Lectures/raw/master/data/clean_water_act.txt"
text <- readLines( clean_water_act)

The Clean Water Act consists of two main parts. The first one authorizes federal funds to support the treatment of sewage and the second part defines the regulatory requirements for industrial and municipal dischargers. I’ve formatted it such that each row in the file is a single element of the act (e.g., SEC. 101 [33 U.S.C. 1251] paragraph (a)(1) is entirely contained on its own line.

How many times is the word sewage found (either as sewage or Sewage)?

sum( str_detect(tolower(text), "sewage") )
[1] 63

The great lakes were intimately involved in the formulation of this Act. What is the official definition of the Great Lakes as it pertains to bodies of water covered by the Clean Water Act?

# find the index 
idx <- str_detect( text, "Great Lakes") 
text[  ] 
   [1] "FEDERAL WATER POLLUTION CONTROL ACT, AS AMENDED BY THE CLEAN WATER ACT OF 1977"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
   [2] "HISTORY:\t\tPublic Law 92-500, Oct. 18, 1972, 86 Stat. 816; 33 U.S.C. 1251 et seq.; Amended by PL 93-207, Dec. 28, 1973; PL 93-243, Jan. 2, 1974; PL 93-592, Jan. 2, 1975; PL 94-238, March 23, 1976; PL 94-273, April 21, 1976; PL 94-558, Oct. 19, 1976; PL 95-217, Dec. 28, 1977; PL 95-576, Nov. 2, 1978; PL 96-148, Dec. 16, 1979; PL 96-478, PL 96-483, Oct. 21, 1980; PL 96-510, Dec. 11, 1980; PL 96-561, Dec. 22, 1980; PL 97-35, Aug. 13, 1981; PL 97-117, Dec. 29, 1981; PL 97-164, April 2, 1982; PL 97-440, Jan. 8, 1983; PL 100-4, Feb. 4, 1987; PL 100-202, Dec. 22, 1987; PL 100-236, Jan. 8, 1988; PL 100-581, Nov. 1, 1988; PL 100-653, Nov. 14, 1988; PL 100-688, Nov. 18, 1988; PL 101-380, Aug. 18, 1990; PL 101-596, Nov. 16, 1990; PL 102-285, May 18, 1992; PL 102-388, Oct. 6, 1992; PL 102-572, Oct. 29, 1992; PL 102-580, Oct. 31, 1992"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
   [3] "[EDITOR'S NOTE:  The Federal Water Pollution Control Act Amendments of 1972, PL 92-500, replaced the previous language of the Act entirely, including the Water Quality Act of 1965, the Clean Water Restoration Act of 1966, and the Water Quality Improvement Act of 1970, all of which had been amendments of the Federal Water Pollution Control Act first passed in 1956. The 1977 amendments, PL 95-217, further amended PL 92-500.]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
   [4] "SEC. 2 "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
   [5] "   The Federal Water Pollution Control Act is amended to read as follows:  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
   [6] "                   TITLE I--RESEARCH AND RELATED PROGRAMS "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
   [7] "  SEC. 101 [33 U.S.C. 1251] Declaration of Goals and Policy "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
   [8] "   (a) The objective of this Act is to restore and maintain the chemical, physical, and biological integrity of the Nation's waters. In order to achieve this objective it is hereby declared that, consistent with the provisions of this Act-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
   [9] "   (1) it is the national goal that the discharge of pollutants into the navigable waters be eliminated by 1985; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
  [10] "   (2) it is the national goal that wherever attainable, an interim goal of water quality which provides for the protection and propagation of fish, shellfish, and wildlife and provides for recreation in and on the water be achieved by July 1, 1983; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
  [11] "   (3) it is the national policy that the discharge of toxic pollutants in toxic amounts be prohibited; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
  [12] "   (4) it is the national policy that Federal financial assistance be provided to construct publicly owned waste treatment works; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  [13] "   (5) it is the national policy that areawide waste treatment management planning processes be developed and implemented to assure adequate control of sources of pollutants in each State; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
  [14] "   (6) it is the national policy that a major research and demonstration effort be made to develop technology necessary to eliminate the discharge of pollutants into the navigable waters, waters of the contiguous zone, and the oceans; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
  [15] "   (7) it is the national policy that programs for the control of nonpoint sources of pollution be developed and implemented in an expeditious manner so as to enable the goals of this Act to be met through the control of both point and nonpoint sources of pollution. [101(a)(7) added by PL 100-41]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
  [16] "   (b) It is the policy of the Congress to recognize, preserve, and protect the primary responsibilities and rights of States to prevent, reduce, and eliminate pollution, to plan the development and use (including restoration, preservation, and enhancement) of land and water resources, and to consult with the Administrator in the exercise of his authority under this Act. It is the policy of Congress that the States manage the construction grant program under this Act and implement the permit programs under sections 402 and 404 of this Act. It is further the policy of the Congress to support and aid research relating to the prevention, reduction, and elimination of pollution, and to provide Federal technical services and financial aid to State and interstate agencies and municipalities in connection with the prevention, reduction, and elimination of pollution. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
  [17] "   (c) It is further the policy of Congress that the President, acting through the Secretary of State and such national and international organizations as he determines appropriate, shall take such action as may be necessary to insure that to the fullest extent possible all foreign countries shall take meaningful action for the prevention, reduction, and elimination of pollution in their waters and in international waters and for the achievement of goals regarding the elimination of discharge of pollutants and the improvement of water quality to at least the same extent as the United States does under its laws. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
  [18] "   (d) Except as otherwise expressly provided in this Act, the Administrator of the Environmental Protection Agency (hereinafter in this Act called \"Administrator\") shall administer this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  [19] "   (e) Public participation in the development, revision, and enforcement of any regulation, standard, effluent limitation, plan, or program established by the Administrator or any State under this Act shall be provided for, encouraged, and assisted by the Administrator and the States. The Administrator, in cooperation with the States, shall develop and publish regulations specifying minimum guidelines for public participation in such processes. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  [20] "   (f) It is the national policy that to the maximum extent possible the procedures utilized for implementing this Act shall encourage the drastic minimization of paperwork and interagency decision procedures, and the best use of available manpower and funds, so as to prevent needless duplication and unnecessary delays at all levels of government. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
  [21] "   (g) It is the policy of Congress that the authority of each State to allocate quantities of water within its jurisdiction shall not be superseded, abrogated or otherwise impaired by this Act. It is the further policy of Congress that nothing in this Act shall be construed to supersede or abrogate rights to quantities of water which have been established by any State. Federal agencies shall co-operate with State and local agencies to' develop comprehensive solutions to prevent, reduce and eliminate pollution in concert with programs for managing water resources. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
  [22] "  SEC. 102 [33 U.S.C. 1252] Comprehensive Programs for Water Pollution Control "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
  [23] "   (a) The Administrator shall, after careful investigation, and in cooperation with other Federal agencies, State water pollution control agencies, interstate agencies, and the municipalities and industries involved, prepare or develop comprehensive programs for preventing, reducing, or eliminating the pollution of the navigable waters and ground waters and improving the sanitary condition of surface and underground waters. In the development of such comprehensive programs due regard shall be given to the improvements which are necessary to conserve such waters for the protection and propagation of fish and aquatic life and wildlife, recreational purposes, and the withdrawal of such waters for public water supply, agricultural, industrial, and other purposes. For the purpose of this section, the Administrator is authorized to make joint investigations with any such agencies of the condition of any waters in any State or States, and of the discharges of any sewage, industrial wastes, or substance which may adversely affect such waters. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
  [24] "   (b)(1) In the survey of planning of any reservoir by the Corps of Engineers, Bureau of Reclamation, or other Federal agency, consideration shall be given to inclusion of storage for regulation of streamflow, except that any such storage and water releases shall not be provided as a substitute for adequate treatment or other methods of controlling waste at the source. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
  [25] "   (2) The need for and the value of storage or regulation of streamflow (other than for water quality) including but not limited to navigation, salt water intrusion, recreation, esthetics, and fish and wildlife, shall be determined by the Corps of Engineers, Bureau of Reclamation, or other Federal agencies. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
  [26] "   (3) The need for, the value of, and the impact of, storage for water quality control shall be determined by the Administrator, and his views on these matters shall be set forth in any report or presentation to Congress proposing authorization or construction of any reservoir including such storage. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
  [27] "   (4) The value of such storage shall be taken into account in determining the economic value of the entire project of which it is a part, and costs shall be allocated to the purpose of regulation of streamflow in a manner which will insure that all project purposes, share equitably in the benefits of multiple-purpose construction. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
  [28] "   (5) Costs of regulation of streamflow features incorporated in any Federal reservoir or other impoundment under the provisions of this Act shall be determined and the beneficiaries identified and if the benefits are widespread or national in scope, the costs of such features shall be nonreimbursable. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
  [29] "   (6) No license granted by the Federal Power Commission for a hydroelectric power project shall include storage for regulation of stream flow for the purpose of water quality control unless the Administrator shall recommend its inclusion and such reservoir storage capacity shall not exceed such proportion of the total storage required for the water quality control plan as the drainage area of such reservoir bears to the drainage area of the river basin or basins involved in such water quality control plan. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  [30] "   (c)(1) The Administrator shall, at the request of the Governor of a State, or a majority of the Governors when more than one State is involved, make a grant to pay not to exceed 50 per centum of the administrative expenses of a planning agency for a period not to exceed three years, which period shall begin after the date of enactment of the Federal Water Pollution Control Act Amendments of 1972, if such agency provides for adequate representation of appropriate State, interstate, local, or (when appropriate) international interests in the basin or portion thereof involved and is capable of developing an effective, comprehensive water quality control plan for a basin or portion thereof. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
  [31] "   (2) Each planning agency receiving a grant under this subsection shall develop a comprehensive pollution control plan for the basin or portion thereof which-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  [32] "   (A) is consistent with any applicable water quality standards, effluent and other limitations, and thermal discharge regulations established pursuant to current law within the basin; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
  [33] "   (B) recommends such treatment works as will provide the most effective and economical means of collection, storage, treatment, and elimination of pollutants and recommends means to encourage both municipal and industrial use of such works; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
  [34] "   (C) recommends maintenance and improvement of water quality within the basin or portion thereof and recommends methods of adequately financing those facilities as may be necessary to implement the plan; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  [35] "   (D) as appropriate, is developed in cooperation with, and is consistent with any comprehensive plan prepared by the Water Resources Council, any areawide waste management plans developed pursuant to section 208 of this Act, and any State plan developed pursuant to section 303(e) of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
  [36] "   (3) For the purposes of this subsection the term \"basin\" includes, but is not limited to, rivers and their tributaries, streams, coastal waters, sounds, estuaries, bays, lakes, and portions thereof, as well as the lands drained thereby. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  [37] "   (d) The Administrator, after consultation with the States, and River Basin Commissions established under the Water Resources Planning Act, shall submit a report to Congress on or before July 1, 1978, which analyzes the relationship between programs under this Act, and the programs by which State and Federal agencies allocate quantities of water. Such report shall include recommendations concerning the policy in section 101(g) of the Act to improve coordination of efforts to reduce and eliminate pollution in concert with programs for managing water resources. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
  [38] "  SEC. 103 [33 U.S.C. 1253] Interstate Cooperation and Uniform Laws "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
  [39] "   (a) The Administrator shall encourage cooperative activities by the States for the prevention, reduction, and elimination of pollution, encourage the enactment of improved and, so far as practicable,uniform State laws relating to the prevention, reduction, and elimination of pollution; and encourage compacts between States for the prevention and control of pollution. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
  [40] "   (b) The consent of the Congress is hereby given to two or more States to negotiate and enter into agreements or compacts, not in conflict with any law or treaty of the United States, for "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
  [41] "   (1) cooperative effort and mutual assistance for the prevention and control of pollution and the enforcement of their respective laws relating thereto, and (2) the establishment of such agencies, joint or otherwise, as they may deem desirable for making effective such agreements and compacts. No such agreement or compact shall be binding or obligatory upon any State a party thereto unless and until it has been approved by the Congress. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
  [42] "  SEC. 104 [33 U.S.C. 1254] Research, Investigations, Training, and Information "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
  [43] "   (a) The Administrator shall establish national programs for the prevention, reduction, and elimination of pollution and as part of such programs shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
  [44] "   (1) in cooperation with other Federal, State, and local agencies, conduct and promote the coordination and acceleration of, research, investigations, experiments, training, demonstrations, surveys, and studies relating to the causes, effects, extent, prevention, reduction, and elimination of pollution; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
  [45] "   (2) encourage, cooperate with, and render technical services to pollution control agencies and other appropriate public or private agencies, institutions, and organizations, and individuals, including the general public, in the conduct of activities referred to in paragraph (1) of this subsection; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
  [46] "   (3) conduct, in cooperation with State water pollution control agencies and other interested agencies, organizations and persons, public investigations conerning the pollution of any navigable waters, and report on the results of such investigations; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
  [47] "   (4) establish advisory committees composed of recognized experts in various aspects of pollution and representatives of the public to assist in the examination and evaluation of research progress and proposals and to avoid duplication of research; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
  [48] "   (5) in cooperation with the States, and their political subdivisions, and other Federal agencies establish, equip, and maintain a water quality surveillance system for the purpose of monitoring the quality of the navigable waters and ground waters and the contiguous zone and the oceans and the Administrator shall, to the extent practicable, conduct such surveillance by utilizing the resources of the National Aeronautics and Space Administration, the National Oceanic and Atmospheric Administration, the United States Geological Survey, and the Coast Guard, and shall report on such quality in the report required under subsection (a) of section 516; and [104(a)(5) amended by PL 102-285]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
  [49] "   (6) initiate and promote the coordination and acceleration of research designed to develop the most effective practicable tools and techniques for measuring the social and economic costs and benefits of activities which are subject to regulation under this Act; and shall transmit a report on the results of such research to the Congress not later than January 1, 1974. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
  [50] "   (b) In carrying out the provisions of subsection (a) of this section the Administrator is authorized to-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
  [51] "   (1) collect and make available, through publications and other appropriate means, the results of and other information, including appropriate recommendations by him in connection therewith, pertaining to such research and other activities referred to in paragraph (1) of subsection (a); "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  [52] "   (2) cooperate with other Federal departments and agencies, State water pollution control agencies, interstate agencies, other public and private agencies, institutions, organizations, industries involved, and individuals, in the preparation and conduct of such research and other activities referred to in paragraph (1) of subsection (a); "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
  [53] "   (3) make grants to State water pollution control agencies, interstate agencies, other public or nonprofit private agencies, institutions, organizations, and individuals, for purposes stated in paragraph (1) of subsection (a) of this section; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
  [54] "   (4) contract with public or private agencies, institutions, organizations, and individuals, without regard to sections 3648 and 3709 of the Revised Statutes (31 U.S.C. 529; 41 U.S.C. 5), referred to in paragraph (1) of subsection (a); "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
  [55] "   (5) establish and maintain research fellowships at public or nonprofit private educational institutions or research organizations; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
  [56] "   (6) collect and disseminate, in cooperation with other Federal departments and agencies, and with other public or private agencies, institutions, and organizations having related responsibilities, basic data on chemical, physical, and biological effects of varying water quality and other information pertaining to pollution and the prevention, reduction, and elimination thereof; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
  [57] "   (7) develop effective and practical processes, methods, and prototype devices for the prevention, reduction, and elimination of pollution. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
  [58] "   (c) In carrying out the provisions of subsection (a) of this section the Administrator shall conduct research on, and survey the results of other scientific studies on, the harmful effects on the health or welfare of persons caused by pollutants. In order to avoid duplication of effort, the Administrator shall, to the extent practicable, conduct such research in cooperation with and through the facilities of the Secretary of Health, Education, and Welfare. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
  [59] "   (d) In carrying out the provisions of this section the Administrator shall develop and demonstrate under varied conditions (including conducting such basic and applied research, studies, and experiments as may be necessary: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
  [60] "   (l) Practicable means of treating municipal sewage, and other waterborne wastes to implement the requirements of section 201 of this Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
  [61] "   (2) Improved methods and procedures to identify and measure the effects of pollutants including those pollutants created by new technological developments; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
  [62] "   (3) Methods and procedures for evaluating the effects on water quality of augmented streamflows to control pollution not susceptible to other means of prevention, reduction, or elimination. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
  [63] "   (e) The Administrator shall establish, equip, and maintain field laboratory and research facilities, including, but not limited to, one to be located in the northeastern area of the United States, one in the Middle Atlantic area, one in the southeastern area, one in the midwestern area, one in the southwestern area, one in the Pacific Northwest, and one in the State of Alaska, for the conduct of research, investigations, experiments, field demonstrations and studies, and training relating to the prevention, reduction and elimination of pollution. Insofar as practicable, each such facility shall be located near institutions of higher learning in which graduate training in such research might be carried out. In conjunction with the development of criteria under section 403 of this Act, the Administrator shall construct the facilities authorized for the National Marine Water Quality Laboratory established under this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
  [64] "   (f) The Administrator shall conduct research and technical development work, and make studies, with respect to the quality of the waters of the Great Lakes, including an analysis of the present and projected future water quality of the Great Lakes under varying conditions of waste treatment and disposal, an evaluation of the water quality needs of those to be served by such waters, an evaluation of municipal, industrial, and vessel waste treatment and disposal practices with respect to such waters, and a study of alternate means of solving pollution problems (including additional waste treatment measures) with respect to such waters. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
  [65] "   (g)(1) For the purpose of providing an adequate supply of trained personnel to operate and maintain existing and future treatment works and related activities, and for the purpose of enhancing substantially the proficiency of those engaged in such activities, the Administrator shall finance pilot programs, in cooperation with State and interstate agencies, municipalities, educational institutions, and other organizations and individuals, of manpower development and training and retraining of persons in, on entering into, the field of operation and maintenance of treatment works and related activities. Such program and any funds expended for such a program shall supplement, not supplant, other manpower and training programs and funds available for the purposes of this paragraph. The Administrator is authorized under such terms and conditions as he deems appropriate, to enter into agreements with one or more States, acting jointly or severally, or with other public or private agencies or institutions for the development and implementation of such a program. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
  [66] "   (2) The Administrator is authorized to enter into agreements with public and private agencies and institutions, and individuals to develop and maintain an effective system for forecasting the supply of, and demand for, various professional and other occupational categories needed for the prevention, reduction, and elimination of pollution in each region, State, or area of the United States and, from time to time, to publish the results of such forecasts. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
  [67] "   (3) In furtherance of the purposes of this Act, the Administrator is authorized to-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
  [68] "   (A) make grants to public or private agencies and institutions and to individuals for training projects, and provide for the conduct of training by contract with public or private agencies and institutions and with individuals without regard to sections 3648 and 3709 of the Revised Statutes; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
  [69] "   (B) establish and maintain research fellowships in the Environmental Protection Agency with such stipends and allowances, including traveling and subsistence expenses, as he may deem necessary to procure the assistance of the most promising research fellows; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
  [70] "   (C) provide, in addition to the program established under paragraph (1) of this subsection, training in technical matters relating to the causes, prevention, reduction, and elimination of pollution for personnel of public agencies and other persons with suitable qualifications. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
  [71] "   (4) The Administrator shall submit, through the President, a report to the Congress not later than December 31, 1973, summarizing the actions taken under this subsection and the effectiveness of such actions, and setting forth the number of persons trained, the occupational categories for which training was provided, the effectiveness of other Federal, State, and local training programs in this field, together with estimates of future needs, recommendations on improving training programs, and such other information and recommendations, including legislative recommendations, as he deems appropriate. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
  [72] "   (h) The Administrator is authorized to enter into contracts with, or make grants to, public or private agencies and organizations and individuals for (A) the purpose of developing and demonstrating new or improved methods for the prevention, removal, reduction, and elimination of pollution in lakes, including the undesirable effects of nutrients and vegetation, and (B) the construction of publicly owned research facilities for such purpose. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
  [73] "   (i) The Administrator, in cooperation with the Secretary of the department in which the Coast Guard is operating, shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
  [74] "   (1) engage in such research, studies, experiments, and demonstrations as he deems appropriate, relative to the removal of oil from any waters and to the prevention, control, and elimination of oil and hazardous substances pollution; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
  [75] "   (2) publish from time to time the results of such activities; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
  [76] "   (3) from time to time, develop and publish in the Federal Register specifications and other technical information on the various chemical compounds used in the control of oil and hazardous substances spills. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
  [77] "   In carrying out this subsection, the Administrator may enter into contracts with, or make grants to, public or private agencies and organizations and individuals. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
  [78] "   (j) The Secretary of the department in which the Coast Guard is operating shall engage in such research, studies, experiments, and demonstrations as he deems appropriate relative to equipment which is to be installed on board a vessel and is designed to receive, retain, treat, or discharge human body wastes and the wastes from toilets and other receptacles intended to receive or retain body wastes with particular emphasis on equipment to be installed on small recreational vessels. The Secretary of the department in which the Coast Guard is operating shall report to Congress the results of such research, studies, experiments, and demonstrations prior to the effective date of any regulations established under section 312 of this Act. In carrying out this subsection the Secretary of the department in which the Coast Guard is operating may enter into contracts with, or make grants to, public or private organizations and individuals. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  [79] "   (k) In carrying out the provisions of this section relating to the conduct by the Administrator of demonstration projects and the development of field laboratories and research facilities, the Administrator may acquire land and interests therein by purchase, with appropriated or donated funds, by donation, or by exchange for acquired or public lands under his jurisdiction which he classifies as suitable for disposition. The values of the properties so exchanged either shall be approximately equal, or if they are not approximately equal, the values shall be equalized by the payment of cash to the grantor or to the Administrator as the circumstances require. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
  [80] "   (l)(1) The Administrator shall, after consultation with appropriate local, State, and Federal agencies, public and private organizations, and interested individuals, as soon as practicable but not later than January 1, 1973, develop and issue to the States for the purpose of carrying out this Act the latest scientific knowledge available in indicating the kind and extent of effects on health and welfare which may be expected from the presence of pesticides in the water in varying quantities. He shall revise and add to such information whenever necessary to reflect developing scientific knowledge. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
  [81] "   (2) The President shall, in consultation with appropriate local, State, and Federal agencies, public and private organizations, and interested individuals, conduct studies and investigations of methods to control the release of pesticides into the environment which study shall include examination of the persistency of pesticides in the water environment and alternatives thereto. The President shall submit reports, from time to time, on such investigations to Congress together with his recommendations for any necessary legislation. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
  [82] "  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  [83] "   (m)(1) The Administrator shall, in an effort to prevent degradation of the environment from the disposal of waste oil, conduct a study of (A) the generation of used engine, machine, cooling, and similar waste oil, including quantities generated, the nature and quality of such oil, present collecting methods and disposal practices, and alternate uses of such oil; (B) the long-term, chronic biological effects of the disposal of such waste oil; and (C) the potential market for such oils, including the economic and legal factors relating to the sale of products made from such oils, the level of subsidy, if any, needed to encourage the purchase by public and private nonprofit agencies of products from such oil, and the practicability of Federal procurement, on a priority basis, of products made from such oil. In conducting such study, the Administrator shall consult with affected industries and other persons. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
  [84] "   (2) The Administrator shall report the preliminary results of such study to Congress within six months after the date of enactment of the Federal Water Pollution Control Act Amendments of 1972, and shall submit a final report to Congress within 18 months after such date of enactment. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
  [85] "   (n)(1) The Administrator shall, in cooperation with the Secretary of the Army, the Secretary of Agriculture, the Water Resources Council, and with other appropriate Federal, State, interstate, or local public bodies and private organizations, institutions, and individuals, conduct and promote, encourage contributions to, continuing comprehensive studies of the effects of pollution, including sedimentation, in the estuaries and estuarine zones of the United States on fish and wildlife, on sport and commercial fishing, on recreation, on water supply and water power, and on other beneficial purposes. Such studies shall also consider the effect of demographic trends, the exploitation of mineral resources and fossil fuels, land and industrial development, navigation, flood and erosion control, and other uses of estuaries and estuarine zones upon the pollution of the waters therein. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
  [86] "   (2) In conducting such studies, the Administrator shall assemble, coordinate, and organize all existing pertinent information on the Nation's estuaries and estuarine zones; carry out a program of investigations and surveys to supplement existing information in representative estuaries and estuarine zones; and identify the problems and areas where further research and study are required. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
  [87] "   (3) The Administrator shall submit to Congress, from time to time, reports of the studies authorized by this subsection but at least one such report during any six-year period. Copies of each such report shall be made available to all interested parties, public and private. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
  [88] "   (4) For the purpose of this subsection, the term \"estuarine zones\" means an environmental system consistting of an estuary and those transitional areas which are consistently influenced or affected by water from an estuary such as, but not limited to, salt marshes, coastal and intertidal areas, bays, harbors, lagoons, inshore waters, and channels, and the term \"estuary\" means all or part of the mouth of a river or stream or other body of water having unimpaired natural connection with open sea and within which the sea water is measurably diluted with fresh water derived from land drainage. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
  [89] "   (o)(1) The Administrator shall conduct research and investigations on devices, systems, incentives, pricing policy, and other methods of reducing the total flow of sewage, including, but not limited to, unnecessary water consumption in order to reduce the requirements for, and the costs of, sewage and waste treatment services. Such research and investigations shall be directed to develop devices, systems, policies, and methods capable of achieving the maximum reduction of unnecessary water consumption. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
  [90] "   (2) The Administrator shall report the preliminary results of such studies and investigations to the Congress within one year after the date of enactment of the Federal Water Pollution Control Act Amendments of 1972, and annually thereafter in the report required under subsection (a) of section 516. Such report shall include recommendations for any legislation that may be required to provide for the adoption and use of devices, systems, policies, or other methods of reducing water consumption and reducing the total flow of sewage. Such report shall include an estimate of the benefits to be derived from adoption and use of such devices, systems, policies, or other methods and also shall reflect estimates of any increase in private, public, or other cost that would be occasioned thereby. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
  [91] "   (p) In carrying out the provisions of subsection (a) of this section the Administrator shall, in cooperation with the Secretary of Agriculture, other Federal agencies, and the States, carry out a comprehensive study and research program to determine new and improved methods and the better application of existing methods of preventing, reducing, and eliminating pollution from agriculture, including the legal, economic, and other implications of the use of such methods. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
  [92] "   (q)(1) The Administrator shall conduct a comprehensive program of research and investigation and pilot project implementation into new and improved methods of preventing reducing, storing, collecting, treating, or otherwise eliminating pollution from sewage in rural and other areas where collection of sewage in conventional, community-wide sewage collection systems is impractical, uneconomical, or otherwise infeasible, or where soil conditions or other factors preclude the use of septic tank and drainage field systems. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
  [93] "   (2) The Administrator shall conduct a comprehensive program of research and investigation and pilot project implementation into new and improved methods for the collection and treatment of sewage and other liquid wastes combined with the treatment and disposal of solid wastes. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
  [94] "   (3) The Administrator shall establish, either within the Environmental Protection Agency, or through contract with an appropriate public or private non-profit organization, a national clearinghouse which shall (A) receive reports and information resulting from research, demonstrations, and other projects funded under this Act related to paragraph (1) of this subsection and to subsection (e)(2) of section 105; (B) coordinate and disseminate such reports and information for use by Federal and Staie agencies, municipalities, institutions, and persons in developing new and improved methods pursuant to this subsection; and (C) provide for the collection and dissemination of reports and information relevant to this subsection from other Federal and State agencies, institutions, universities, and persons. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
  [95] "   (4) Small Flows Clearinghouse.-- Notwithstanding section 205(d) of this Act, from amounts t:iat are set aside for a fiscal year under section 205(i) of this Act and are not obligated by the end of the 24-month period of availability for such amounts under section 205(d), the Administrator shall make available $1,000,000 or such unobligated amount, whichever is less, to support a national clearinghouse within the Environmental Protection Agency to collect and disseminate information on small flows of sewage and innovative or alternative wastewater treatment processes and techniques, consistent with paragraph (3). This paragraph shall apply with respect to amounts set aside under section 205(i) for which the 24-month period of availability referred to in the preceding sentence ends on or after September 30, 1986. [104(q)(4) added by PL 100-41]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
  [96] "   (r) The Administrator is authorized to make grants to colleges and universities to conduct basic research into the structure and function of fresh water aquatic ecosystems, and to improve understanding of the ecological characteristics necessary to the maintenance of the chemical, physical, and biological integrity of freshwater aquatic ecosystems. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  [97] "   (s) The Administrator is authorized to make grants to one or more institutions of higher education (regionally located and to be designated as \"River Study Centers\") for the purpose of conducting and reporting on interdisciplinary studies on the nature of river systems, including, hydrology, biology, ecology, economics, the relationship between river uses and land uses, and the effects of development within river basins on river systems and on the value of water resources and water related activities. No such grant in any fiscal year shall exceed $1,000,000. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
  [98] "   (t) The Administrator shall, in cooperation with State and Federal agencies and public and private organizations, conduct continuing comprehensive studies of the effects and methods of control of thermal discharges. In evaluating alternative methods of control the studies shall consider (1) such data as are available on the latest available technology, economic feasibility including cost-effectivness analysis, and (2) the total impact on the environment, considering not only water quality but also air quality, land use, and effective utilization and conservation of fresh water and other natural resources. Such studies shall consider meLhods of minimizing adverse effects and maximizing beneficial effects of thermal discharges. The results of these studies shall be reported by the Administrator as soon as practicable, but not later than 270 days after enactment of this subsection, and shall be made available to the public and the States, and considered as they become available by the Administrator in carrying out section 316 of this Act and by the States in proposing thermal water quality standards. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
  [99] "   (u) There is authorized to be appropriated (1) not to exceed $100,000,000 per fiscal year ending June 30, 1973, the fiscal year ending June 30, 1974, and the fiscal year ending June 30, 1975, not to exceed $14,039,000 for the fiscal year ending September 30, 1980, not to exceed $20,697,000 for the fiscal year ending September 30, 1981, not to exceed $22,770,000 for the fiscal year ending September 30, 1982, such sums as may be necessary for fiscal years 1983 through 1985, and not to exceed $22,770,000 per fiscal year for each of the fiscal years 1986 through 1990, for carrying out the provisions of this section, other than subsections (g)(1) and (2), (p), (r), and (t), except that such authorizations are not for any research, development, or demonstration activity pursuant to such provisions; (2) not to exceed $7,500,000 for fiscal years 1973, 1974, and 1975, $2,000,000 for fiscal year 1977, $3,000,000 for fiscal year 1978, $3,000,000 for fiscal year 1979, $3,000,000 for fiscal year 1980, $3,000,000 for fiscal year 1981, $3,000,000 for fiscal year 1982, such sums as may be necessary for fiscal years 1983 through 1985, and $3,000,000 per fiscal year for each of the fiscal years 1986 through 1990, for carrying out the provisions of subsection (g)(1); (3) not to exceed $2,500,000 for fiscal year 1973, 1974, and 1975. $1,000,000 for fiscal year 1977, $1,500,000 for fiscal year 1978, $1,500,000 for fiscal year 1979, $1,500,000 for fiscal year 1980, $1,500,000 for fiscal year 1981, $1,500,000 for fiscal year 1982, such sums as may be necessary for fiscal years 1983 through 1985, and $1,500,000 per fiscal year for each of the fiscal years 1986 through 1990, for carrying out the provisions of subsection (g)(2); (4) not to exceed $10,000,000 for each of the fiscal years ending June 30, 1973, June 30, 1974, and June 30, 1975, for carrying out the provisions of subsection (p); (5) not to exceed $15,000,000 per fiscal year for the fiscal years ending June 30, 1973, June 30, 1974, and June 30, 1975, for carrying out the provisions of subsection (r); and (6) not to exceed $10,000,000 per fiscal year for the fiscal years ending June 30, 1973, June 30, 1974, and June 30, 1975, for carrying out the provisions of subsection (t). [104(u) amended by PL 95-576; PL 96-483; PL 100-4] "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [100] "[EDITOR'S NOTE:  105 of PL 100-4 required further research by the EPA. The provisions follow.]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [101] "  SEC. 105 Research on Effects of Pollutants "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [102] "   In carrying out the provisions of section 104(a) of the Federal Water Pollution Control Act, the Administrator shall conduct research on the harmful effects on the health and welfare of persons caused by pollutants in water, in conjunction with the United States Fish and Wildlife Service, the National Oceanic and Atmospheric Administration, and other Federal, State, and interstate agencies carrying on such research. Such research shall include, and shall place special emphasis on, the effect that bioaccumulation of these pollutants in aquatic species has upon reducing the value of aquatic commercial and sport industries. Such research shall further study methods to reduce and remove these pollutants from the relevant affected aquatic species so as to restore and enhance these valuable resources."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [103] "  SEC. 105 [33 U.S.C. 1255] Grants for Research and Development "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [104] "   (a) The Administrator is authorized to conduct in the Environmental Protection Agency, and to make grants to any State, municipality, or intermunicipal or interstate agency for the purpose of assisting in the development of-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [105] "   (1) any project which will demonstrate a new or improved method of preventing, reducing, and eliminating the discharge into any waters of pollutants from sewers which carry storm water or both storm water and pollutants; or "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [106] "   (2) any project which will demonstrate advanced waste treatment and water purification methods (including the temporary use of new or improved chemical additives which provide substantial immediate improvement to existing treatment processes), or new or improved methods of joint treatment systems for municipal and industrial wastes; and to include in such grants such amounts as are necessary for the purpose of reports, plans, and specifications in connection therewith. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [107] "   (b) The Administrator is authorized to make grants to any State or States or interstate agency to demonstrate, in river basins or portions thereof, advanced treatment and environmental enhancement techniques to control pollution from all sources, within such basins or portions thereof, including nonpoint sources, together with in stream water quality improvement techniques. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [108] "   (c) In order to carry out the purposes of section 301 of this Act, the Administrator is authorized to (1) conduct in the Environmental Protection Agency, (2) make grants to persons, and (3) enter into contracts with persons, for research and demonstration projects for prevention of pollution of any waters by industry including, but not limited to, the prevention, reduction, and elimination of the discharge of pollutants. No grant shall be made for any project under this subsection unless the Administrator determines that such project will develop or demonstrate a new or improved method of treating industrial wastes or otherwise prevent pollution by industry, which method shall have industrywide application. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [109] "   (d) In carrying out the provisions of this section, the Administrator shall conduct, on a priority basis, an accelerated effort to develop, refine, and achieve practical application of: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [110] "   (1) waste management methods applicable to point and nonpoint sources of pollutants to eliminate the discharge of pollutants, including, but not limited to, elimination of runoff of pollutants and the effects of pollutants from inplace or accumulated sources; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [111] "   (2) advanced waste treatment methods applicable to point and nonpoint sources, including inplace or accumulated sources of pollutants, and methods for reclaiming and recycling water and confining pollutants so they will not migrate to cause water or other environmental pollution; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [112] "   (3) improved methods and procedures to identify and measure the effects of pollutants on the chemical, physical, and biological integrity of water, including those pollutants created by new technological developments. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [113] "   (e)(1) The Administrator is authorized to (A) make, in consultation with the Secretary of Agriculture, grants to persons for research and demonstration projects with respect to new and improved methods of preventing, reducing, and eliminating pollution from agriculture, and (B) disseminate, in cooperation with the Secretary of Agriculture, such information obtained under this subsection, section 104(p), and section 304 as will encourage and enable the adoption of such methods in the agricultural industry. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [114] "   (2) The Administrator is authorized, (A) in consultation with other interested Federal agencies, to make grants for demonstration projects with respect to new and improved methods of preventing, reducing, storing, collecting, treating, or otherwise eliminating pollution from sewage in rural and other areas where collection of sewage in conventional, community-wide sewage collection systems is impractical, uneconomical, or otherwise infeasible, or where soil conditions or other factors preclude the use of septic tank and drainage field systems, and (B) in cooperation with other interested Federal and State agencies, to disseminate such information obtained under this subsection as will encourage and enable the adoption of new and improved methods developed pursuant to this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [115] "   (f) Federal grants under subsection (a) of this section shall be subject to the following limitations: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [116] "   (1) No grant shall be made for any project unless such project shall have been approved by the appropriate State water pollution control agency or agencies and by the Administrator; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [117] "   (2) No grant shall be made for any project in an amount exceeding 75 per centum of cost thereof as determined by the Administrator; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [118] "   (3) No grant shall be made for any project unless the Administrator determines that such project will serve as a useful demonstration for the purpose set forth in clause (1) or (2) of subsection (a). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [119] "   (g) Federal grants under subsections (c) and (d) of this section shall not exceed 75 per centum of the cost of the project. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [120] "   (h) For the purpose of this section there is authorized to be appropriated $75,000,000 per fiscal year for the fiscal year ending June 30, 1973, the fiscal year ending June 30, 1974, and the fiscal year ending June 30, 1975, and from such appropriations at least lO per centum of the funds actually appropriated in each fiscal year shall be available only for the purposes of subsection (e). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [121] "   (i) The Administrator is authorized to make grants to a municipality to assist in the costs of operating and maintaining a project which received a grant under this section, section 104, or section 113 of this Act prior to the date of enactment of this subsection so as to reduce the operation and maintenance costs borne by the recipients of services from such project to costs comparable to those for projects assisted under title II of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [122] "   (j) The Administrator is authorized to make a grant to any grantee who received an increased grant pursuant to section 202(a)(2) of this Act. Such grant may pay up to 100 per centum of the costs of technical evaluation of the operation of the treatment works, costs of training of persons (other than employees of the grantee), and costs of disseminating technical information on the operation of the treatment works. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [123] "  SEC. 106 [33 U.S.C. 1256] Grants for Pollution Control Programs "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [124] "   (a) There are hereby authorized to be appropriated the following sums, to remain available until expended, to carry out the purposes of this section-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [125] "   (1) $60,000,000 for the fiscal year ending June 30, 1973; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [126] "   (2) $75,000,000 for the fiscal year ending June 30, 1974, and the fiscal year ending June 30, 1975, $100,000,000 per fiscal year for the fiscal years 1977, 1978, 1979, 1980, $75,000,000 per fiscal year for the final years 1981 and 1982, such sums as may be necessary for fiscal years 1983 through 1985, and $75,000,000 per fiscal year for each of the fiscal years 1986 through 1990; for grants to States and to interstate agencies to assist them in administering programs for the prevention, reduction, and elimination of pollution, including enforcement directly or through appropriate State law enforcement officers or agencies. [106(a)(2) amended by PL 96-483; PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [127] "   (b) From the sums appropriated in any fiscal year, the Administrator shall make allotments to the several States and interstate agencies in accordance with regulations promulgated by him on the basis of the extent of the pollution problem in the respective States. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [128] "   (c) The Administrator is authorized to pay each State and interstate agency each fiscal year either-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [129] "   (1) the allotment of such State or agency for such fiscal year under subsection (b), or "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [130] "   (2) the reasonable costs as determined by the Administrator of developing and carrying out a pollution program by such State or agency during such fiscal year, whichever amount is the lesser. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [131] "   (d) No grant shall be made under this section to any State or interstate agency for any fiscal year when the expenditure of non-Federal funds by such State or interstate agency during such fiscal year for the recurrent expenses of carrying out its pollution control program are less than the expenditure by such State or interstate agency of non-Federal funds for such recurrent program expenses during the fiscal year ending June 30, 1971. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [132] "   (e) Beginning in fiscal year 1974 the Administrator shall not make any grant under this section to any State which has not provided or is not carrying out as a part of its program-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [133] "   (1) the establishment and operation of appropriate devices, methods, systems, and procedures necessary to monitor, and to compile and analyze data on (including classification according to eutrophic condition), the quality of navigable waters and to the extent practIcable, ground waters including biological monitoring; and provision for annually updating such data and including it in the report required under section 305 of this Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [134] "   (2) authority comparable to that in section 504 of this Act and adequate contingency plans to implement such authority. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [135] "   (f) Grants shall be made under this section on condition that-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [136] "   (1) Such State (or interstate agency) filed with the Administrator within one hundred and twenty days after the date of enactment of this section: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [137] "   (A) a summary report of the current status of the State pollution control program, including the criteria used by the State in determining priority of treatment works; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [138] "   (B) such additional information, data, and reports as the Administrator may require. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [139] "   (2) No federally assumed enforcement as defined in section 309(a)(2) is in effect with respect to such State or interstate agency. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [140] "   (3) Such State (or interstate agency) submits within one hundred and twenty days after the date of enactment of this section and before October l of each year thereafter for the Administrator's approval of its program for the prevention, reduction, and elimination of pollution in accordance with purposes and provisions of this Act in such form and content as the Administrator may prescribe. [106(f)(3) amended by PL 94-273]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [141] "   (g) Any sums allotted under subsection (b) in any fiscal year which are not paid shall be reallotted by the Administrator in accordance with regulations promulgated by him. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [142] "  SEC. 107 [33 U.S.C. 1257] Mine Water Pollution Control Demonstrations "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [143] "   (a) The Administrator in cooperation with the Appalachian Regional Commission and other Federal agencies is authorized to conduct, to make grants for, or to contract for, projects to demonstrate comprehensive approaches to the elimination or control of acid or other mine water pollution resulting from active or abandoned mining operations and other environmental pollution affecting water quality within all or part of a watershed or river basin, including siltation from surface mining. Such projects shall demonstrate the engineering and economic feasibility and practicality of various abatement techniques which will contribute substantially to effective and practical methods of acid or other mine water pollution elimination or control, and other pollution affecting water quality, including techniques that demonstrate the engineering and economic feasibility and practicality of using sewage sludge materials and other municipal wastes to diminish or prevent pollution affecting water quality from acid, sedimentation, or other pollutants and in such projects to restore affected lands to usefulness for forestry, agriculture, recreation, or other beneficial purposes. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [144] "   (b) Prior to undertaking any demonstration project under this section in the Appalachian region (as defined in section 403 of the Appalachian Regional Development Act of 1965, as amended), the Appalachian Regional Commission shall determine that such demonstration project is consistent with the objectives of the Appalachian Regional Development Act of 1965, as amended. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [145] "   (c) The Administrator, in selecting watersheds for the purposes of this section, shall be satisfied that the project area will not be affected adversely by the influx of acid or other mine water pollution from nearby sources. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [146] "   (d) Federal participation in such projects shall be subject to the conditions-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [147] "   (1) that the State shall acquire any land or interests therein necessary for such project; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [148] "   (2) that the State shall provide legal and practical protection to the project area to insure against any activities which will cause future acid or other mine water pollution. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [149] "   (e) There is authorized to be appropriated $30,000,000 to carry out the provisions of this section, which sum shall be available until expended. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [150] "  SEC. 108 [33 U.S.C. 1258] Pollution Control in Great Lakes "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [151] "   (a) The Administrator, in cooperation with other Federal departments, agencies, and instrumentalities is authorized to enter, into agreements with any State, political subdivision, interstate agency, or other public agency, or combination thereof, to carry out one or more projects to demonstrate new methods and techniques and to develop preliminary plans for the elimination or control of pollution, within all or any part of the watersheds of the Great Lakes. Such projects shall demonstrate the engineering and economic feasibility and practicality of removal of pollutants and prevention of any polluting matter from entering into the Great Lakes in the future and other reduction and remedial techniques which will contribute substantially to effective and practical methods of pollution prevention, reduction, or elimination. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [152] "   (b) Federal participation in such projects shall be subject to the condition that the State, political subdivision, interstate agency, or other public agency, or combination thereof, shall pay not less than 25 per centum of the actual project costs, which payment may be in any form, including, but not limited to, land or interests therein that is needed for the project, and personal property or services the value of which shall be determined by the Administrator. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [153] "   (c) There is authorized to be appropriated $20,000,000 to carry out the provisions of subsections (a) and (b) of this section, which sum shall be available until expended. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [154] "   (d)(1) In recognition of the serious conditions which exist in Lake Erie, the Secretary of the Army, acting through the Chief of Engineers, is directed to design and develop a demonstration waste water management program for the rehabilitation and environmental repair of Lake Erie. Prior to the initiation of detailed engineering and design, the program, along with the specific recommendations shall be submitted to the Congress for statutory approval. This authority is in addition to, and not in lieu of, other waste water studies aimed at eliminating pollution emanating from select sources around Lake Erie. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [155] "   (2) This program is to be developed in cooperation with the Environmental Protection Agency, other interested departments, agencies, and instrumentalities of the Federal Government, and the States and their political subdivisions. This program shall set forth alternative systems for managing waste water on a regional basis and shall provide local and State governments with a range of choice as to the type of system to be used for the treatment of waste water. These alternative systems shall include both advanced waste treatment technology and land disposal systems including aerated treatment-spray irrigation technology and will also include provisions for the disposal of solid wastes, including sludge. Such program should include measures to control point sources of pollution, area sources of pollution, including acid-mine drainage, urban runoff and rural runoff, and in place sources of pollution, including bottom loads, sludge banks, and polluted harbor dredgings. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [156] "   (e) There is authorized to be appropriated $5,000,000 to carry out the provisions of subsection (d) of this section, which sum shall be available until expended. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [157] "  SEC. 109 [33 U.S.C. 1259] Training Grants and Contracts "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [158] "   (a) The Administrator is authorized to make grants to or contracts with institutions of higher education, or combinations of such institutions, to assist them in planning, developing, strengthening, improving, or carrying out programs or projects for the preparation of undergraduate students to enter an occupation which involves the design, operation, and maintenance of treatment works. and other facilities whose purpose is water quality control. Such grants or contracts may include payment of all or part of the cost of programs or projects such as-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [159] "   (A) planning for the development or expansion of programs or projects for training persons in the operation and maintenance of treatment works: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [160] "   (B) training and retraining of faculty members; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [161] "   (C) conduct of short-term or regular session institutes for study by persons engaged in, or preparing to engage in, the preparation of students preparing to enter an occupation involving the operation and maintenance of treatment works; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [162] "   (D) carrying out innovative and experimental programs of cooperative education involving alternate periods of full-time or part-time academic study at the institution and periods of full-time or part-time employment involving the operation and maintenance of treatment works; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [163] "   (E) research into, and development of, methods of training students or faculty, including the preparation of teaching materials and the planning of curriculum. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [164] "   (b)(1) The Administrator may pay 100 per centum of any additional cost of construction of treatment works required for a facility to train and upgrade waste treatment works operation and maintenance personnel and for the costs of other State treatment works operator training programs, including mobile training units, classroom rental, specialized instructors, and instructional material. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [165] "   (2) The Administrator shall make no more than one grant for such additional construction in any State (to serve a group of States, where, in his judgment, efficient training programs require multi-State programs), and shall make such grant after consultation with and approval by the State or States on the basis of (A) the suitability of such facility for training operation and maintenance personnel for treatment works throughout such State or States; and (B) a commitment by the State agency or agencies to carry out at such facility a program of training approved by the Administrator. In any case where a grant is made to serve two or more States, the Administrator is authorized to make an additional grant for a supplemental facility in each such State. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [166] "   (3) The Administrator may make such grant out of the sums allocated to a State under section 205 of this Act, except that in no event shall the Federal cost of any such training facilities exceed $500,000. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [167] "   (4) The Administrator may exempt a grant under thIs section from any requirement under section 204(a)(3) of this Act. Any grantee who received a grant under this section prior to enactment of the Clean Water Act of 1977 shall be eligible to have its grant increased by funds made available under such Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [168] "  SEC. 110 [33 U.S.C. 1260] Application for Training Grant or Contract; Allocation of Grants or Contracts "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [169] "   (1) A grant or contract authorized by section 109 may be made only upon application to the Administrator at such time or times and containing such information as he may prescribe, except that no such application shall be approved unless it-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [170] "   (A) sets forth programs, activities, research, or development for which a grant is authorized under section 109 and describes the relation to any program set forth by the applicant in an application, if any, submitted pursuant to section 111;"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [171] "   (B) provides such fiscal control and fund accounting procedures as may be necessary to assure proper disbursement of and accounting for Federal funds paid to the applicant under this section; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [172] "   (C) provides for making such reports, in such form and containing such information, as the Administrator may require to carry out his functions under this section, and for keeping such records and for affording such access thereto as the Administrator may find necessary to assure the correctness and verification of such reports. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [173] "   (2) The Administrator shall allocate grants or contracts under section 109 in such manner as will most nearly provide an equitable distribution of the grants or contracts throughout the United States among institutions of higher education which show promise of being able to use funds effectively for the purpose of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [174] "   (3)(A) Payments under this section may be used in accordance with regulations of the Administrator, and subject to the terms and conditions set forth in an application approved under paragraph (1), to pay part of the compensation of students employed in connection with the operation and maintenance of treatment works, other than as an employee in connection with the operation and maintenance of treatment works or as an employee in any branch of the Government of the United States, as part of a program for which a grant has been approved pursuant to this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [175] "   (B) Departments and agencies of the United States are encouraged, to the extent consistent with efficient administration, to enter into arrangements with institutions of higher education for the full-time, part-time, or temporary employment, whether in the competitive or excepted service, of students enrolled in programs set forth in applications approved under paragraph (1). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [176] "  SEC. 111 [33 U.S.C. 1261] Award of Scholarships "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [177] "   (1) The Administrator is authorized to award scholarships in accordance with the provisions of this section for undergraduate study by persons who plan to enter an occupation involving the operation and maintenance of treatment works. Such scholarships shall be awarded for such periods as the Administrator may determine but not to exceed four academic years. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [178] "   (2) The Administrator shall allocate scholarships under this section among institutions of higher educationwith programs approved under the provisions of this section for the use of individuals accepted into such programs, in such manner and accordance to such plan as will insofar as practicable-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [179] "   (A) provide an equitable distribution of such scholarships throughout the United States; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [180] "   (B) attract recent graduates of secondary schools to enter an occupation involving the operation and mainte nance of treatment works. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [181] "   (3) The Administrator shall approve a program of any institution of higher education for the purposes ofthis section only upon application by the institution and only upon his finding-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [182] "   (A) that such program has a principal objective the education and training of persons in the operation and maintenance of treatment works; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [183] "   (B) that such program is in effect and of high quality, or can be readily put into effect and may reasonably be expected to be of high quality; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [184] "   (C) that the application describes the relation of such program to any program, activity, research, or development set forth by the applicant in an application, if any, submitted pursuant to section 110 of this Act; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [185] "   (D) that the application contains satisfactory assurances that (i) the institution will recommend to the Administrator for the award of scholarships under this section, for study in such program, only persons who have demonstrated to the satisfaction of the institution a serious intent, upon completing the program, to enter an occupation involving the operation and maintenance of treatment works, and (ii) the institution will make reasonable continuing efforts to encourage recipients of scholarships under this section, enrolled in such program, to enter occupations involving the operation and maintenance of treatment works upon completing the program. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [186] "   (4)(A) The Administrator shall pay to persons awarded scholarships under this section such stipends (including such allowances for subsistence and other expenses for such persons and their dependents) as he may determine to be consistent with prevailing practices under comparable federally supported programs. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [187] "   (B) The Administrator shall (in addition to the stip ends paid to persons under paragraph (1)) pay to the institution of higher education at which such person is pursuing his course of study such amount as he may determine to be consistent with prevailing practices under comparable federally support programs. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [188] "   (5) A person awarded a scholarship under the provisions of this section shall continue to receive the payments provided in this section only during such periods as the Administrator finds that he is maintaining satisfactory proficiency and devoting full time to study or research in the field in which such scholarship was awarded in an institution of higher education, and is no engaging in gainful employment other than employment approved by the Administrator by or pursuant to regulation. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [189] "   (6) The Administrator shall by regulation provide that any person awarded a scholarship under this section shall agree in writing to enter and remain in an occupation involving the design, operation, or maintenance of treatment works for such period after completion of this course of studies as the Administrator determines appropriate. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [190] "  SEC. 112 [33 U.S.C. 1262] Definitions and Authorizations "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [191] "   (a) As used in sections 109 through 112 of this Act-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [192] "   (1) The term \"institution of higher education\" means an education institution described in the first sentence of section 1201 of the Higher Education Act of 1965 (other than an institution of any agency of the United States) which is accredited by a nationally recognized accrediting agency of association approved by the Administrator for this purpose. For purposes of this subsection, the Administrator shall publish a list of nationally recognized accrediting agencies or associations which he determines to be reliable authority as to the quality of training offered. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [193] "   (2) The term \"academic year\" means an academic year or its equivalent, as determined by the Administrator. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [194] "   (b) The Administrator shall annually report his activities under section 109 through 112 of this Act, including recommendations for needed revisions in the provisions thereof. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [195] "   (c) There are authorized to be appropriated $25,000,000 per fiscal year for the fiscal years ending June 30, 1973, June 30, 1974, and June 30, 1975, $6,000,000 for the fiscal year ending September 30, 1977, $7,000,000 for the fiscal year ending September 30, 1978, $7,000,000 for the fiscal year ending September 30, 1979, $7,000,000 for the fiscal year ending September 30, 1980, $7,000,000 for the fiscal year ending September 30, 1981, $7,000,000 for the fiscal year ending September 30, 1982, such sums as may be necessary for fiscal years 1983 through 1985, and $7,000,00 per fiscal year for each of the fiscal years 1986 through 1990, to carry out sections 109 through 112 of this Act. [112(c) amended by PL 96-483; PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [196] "  SEC. 113 [33 U.S.C. 1263] Alaska Village Demonstration Projects "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [197] "   The Administrator is authorized to enter into agreements with the State of Alaska to carry out one or more projects to demonstrate methods to provide for central community facilities for safe water andelimination or control of pollution in those native villages of Alaska without such facilities. Such project shall include provisions for community safe water supply systems, toilets, bathing and laundry facilities, sewage disposal facilities, and other similar facilities, and educational and informational facilities and programs relating to health and hygiene. Such demonstration projects shall be for the further purpose of developing preliminary plans for providing such safe water and such elimination or control of pollution for all native villages in such State. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [198] "   (b) In carrying out this section the Administrator shall cooperate with the Secretary of Health, Education, and Welfare for the purpose of utilizing such of the personnel and facilities of that Department as may be appropriate. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [199] "   (c) The Administrator shall report to Congress not later than July 1, 1973, the rcsults of the demonstration projects authorized by this section together with his recommendations, including any necessary legislation, relating to the establishment of a statewide program. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [200] "   (d) There is authorized to be appropriated not to exceed $2,000,000 to carry out this section. In addition, there is authorized to be appropriated to carry out this section not to exceed $200,000 for the fiscal year ending September 30, 1978 and $220,000 for the fiscal year ending September 30, 1979. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [201] "   (e) The Administrator is authorized to coordinate with the Secretary of the Department of Health, Education, and Welfare, the Secretary of the Department of Housing and Urban Development, the Secretary of the Department of the Interior, the Secretary of the Department of Agriculture, and the heads of any other departments or agencies he may deem appropriate to conduct a joint study with representatives of the State of Alaska and the appropriate Native organizations (as defined in Public Law 92-203) to develop a comprehensive program for achieving adequate sanitation services in Alaska villages. This study shall be coordinated with the programs and projects authorized by sections 104(q) and 105(e)(2) of this Act. The Administrator shall submit a report of the results of the study, together with appropriate supporting data and such recommendations as he deems desirable, to the Committee on Environment and Public Works of the Senate and to the Committee on Public Works and Transportation of the House of Representatives not later than December 31, 1979. The Administrator shall also submit recommended administrative actions, procedures, and any proposed legislation necessary to implement the recommendations of the study no later than June 30, 1980. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [202] "   (f) The Administrator is authorized to provide technical, financial and management assistance for operation and maintenance of the demonstration projects constructed under this section, until such time as the recommendations of subsection (e) are implemented. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [203] "   (g) For the purpose of this section, the term \"village\" shall mean an incorporated or unincorporated community with a population of ten to six hundred people living within a two-mile radius. The term \"sanitation services\" shall mean water supply, sewage disposal, solid waste disposal and other services necessary to maintain generally accepted standards of personal hygiene and public health. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [204] "  SEC. 114 [33 U.S.C. 1264] Lake Tahoe Study "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [205] "   (a) The Administrator, in consultation with the Tahoe Regional Planning Agency, the Secretary of Agriculture, other Federal agencies, representatives of State and local governments, and members of the public, shall conduct a thorough and complete study on the adequacy of and need for extending Federal oversight and control in order to preserve the fragile ecology of Lake Tahoe. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [206] "   (b) Such study shall include an examination of the interrelationships and responsibilities of the various agencies of the Federal Government and State and local governments with a view to establishing the necessity for redefinition of legal and other arrangements between these various governments, and making specific legislative recommendations to Congress. Such study shall consider the effect of various actions in terms of their environmental impact on the Tahoe Basin, treated as an ecosystem. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [207] "   (c) The Administrator shall report on such study to Congress not later than one year after the date of enactment of this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [208] "   (d) There is authorized to be appropriated to carry out this section not to exceed $500,000. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [209] "  SEC. 115 [33 U.S.C. 1265] In-Place Toxic Pollutants "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [210] "   The Administrator is directed to identify the location of in-place pollutants with emphasis on toxic pollutants in harbors and navigable waterways and is authorized, acting through the Secretary of the Army, to make contracts for the removal and appropriate disposal of such materials from critical port and harbor areas. There is authorized to be appropriated $15,000,000 to carry out the provisions of this section, which sum shall be available until expended. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [211] "  SEC. 116 [33 U.S.C. 1266] Hudson River PCB Reclamation Demonstration Project "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [212] "   (a) The Administrator is authorized to enter into contracts and other agreements with the State of New York to carry out a project to demonstrate methods for the selective removal of polychlorinated biphenyls contaminating bottom sediments of the Hudson River, treating such sediments as required, burying such sediments in secure landfills, and installing monitoring systems for such landfills. Such demonstration project shall be for the purpose of determining the feasibility of indefinite storage in secure landfills of toxic substances and of ascertaining the improvement of the rate of recovery of a toxic contaminated national waterway. No pollutants removed pursuant to this paragraph shall be placed in any landfill unless the Administrator first determines that disposal of the pollutants in such landfill would provide a higher standard of protection of the public health, safety, and welfare than disposal of such pollutants by any other method including, but not limited to, incineration or a chemical destruction process. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [213] "   (b) The Administrator is authorized to make grants to the State of New York to carry out this section from funds allotted to such State under section 205(a) of this Act, except that the amount of any such grant shall be equal to 75 per centum of the cost of the project and such grant shall be made on condition that non-Federal sources provide the remainder of the cost of such project. The authority of this section shall be available until September 30, 1983. Funds allotted to the State of New York under section 205(a) shall be available under this subsection only to the extent that funds are not available, as determined by the Administrator, to the State of New York for the work authorized by this section under section 115 or 311 of this Act or a comprehensive hazardous substance response and clean up fund. Any funds used under the authority of this subsection shall be deducted from any estimate of the needs of the State of New York prepared under section 616(b) of this Act. The Administrator may not obligate or expend more than $20,000,000 to carry out this section. [116 added by PL 96-483]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [214] "  SEC. 117 [33 U.S.C. 1267] Chesapeake Bay "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [215] "   (a) Office.--The Administrator shall continue the Chesapeake Bay Program and shall establish and maintain in the Environmental Protection Agency an office, division, or branch of Chesapeake Bay Programs to-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [216] "   (1) collect and make available, through publications and other appropriate means, information pertaining to the environmental quality of the Chesapeake Bay (hereinafter in this subsection referred to as the \"Bay'); "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [217] "   (2) coordinate Federal and State efforts to improve the water quality of the Bay; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [218] "   (3) determine the impact of sediment deposition in the Bay and identify the sources, rates, routes, and distribution patterns of such sediment deposition; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [219] "   (4) determine the impact of natural and man-induced environmental changes on the living resources of the Bay and the relationships among such changes, with particular emphasis placed on the impact of pollutant loadings of nutrients, chlorine, acid precipitation, dissolved oxygen, and toxic pollutants, including organic chemicals and heavy metals, and with special attention given to the impact of such changes on striped bass. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [220] "   (b) Interstate Development Plan Grants.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [221] "   (1) Authority.--The Administrator shall, at the request of the Governor of a State affected by the interstate management plan developed pursuant to the Chesapeake Bay Program (hereinafter in this section referred to as the \"plan\"), make a grant for the purpose of implementing the management mechanisms contained in the plan if such State has, within 1 year after the date of the enactment of this section, approved and committed to implement all or substantially all aspects of the plan. Such grants shall be made subject to such terms and conditions as the Administrator considers appropriate. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [222] "   (2) Submission of Proposal.--A State or combination of States may elect to avail itself of the benefits of this subsection by submitting to the Administrator a comprehensive proposal to implement management mechanisms contained in the plan which shall include (A) a description of proposed abatement actions which the State or combination of States commits to take within a specified time period to reduce pollution in the Bay and to meet applicable water quality standards, and (B) the estimated cost of the abatement actions proposed to be taken during the next fiscal year. If the Administrator finds that such proposal is consistent with the national policies set forth in section 101(a) of this Act and will contribute to the achievement of the national goals set forth in such section, the Administrator shall approve such proposal and shall finance the costs of implementing segments of such proposal. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [223] "   (3) Federal share.--Grants under this subsection shall not exceed 50 percent of the costs of implementing the management mechanims contained in the plan in any fiscal year and shall be made on condition that non-Federal sources provide the remainder of the cost of implementing the management mechanisms contained in the plan during such fiscal year. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [224] "   (4) Administrative costs.--Administrative costs in the form of salaries, overhead, or indirect costs for services provided and charged against programs or projects supported by funds made available under this subsection shall not exceed in any one fiscal year 10 percent of the annual Federal grant made to a State under this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [225] "   (c) Reports.--Any State or combination of States that receives a grant under subsection (b) shall, within 18 months after the date of receipt of such grant and biennially thereafter, report to the Adminstrator on the progress made in implementing the interstate management plan developed pursuant to the Chesapeake Bay Program. The Administrator shall transmit each such report along with the comments of the administrator on such report to Congress. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [226] "   (d) Authorization of Appropriations.-- There are hereby authorized to be appropriated the following sums, to remain available until expended, to carry out the purposes of this section: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [227] "   (1) $3,000,000 per fiscal year for each of the fiscal years 1987, 1988, 1989, and 1990, to carry out subsection (a); and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [228] "   (2) $10,000,000 per fiscal year for each of the fiscal years 1987, 1988, 1989, and 1990, for grants to States under subsction (b). [117 added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [229] "  SEC. 118 [33 U.S.C. 1268] Great Lakes [118 added by PL 100-4; amended by PL 100-688]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [230] "   (a) Findings, Purpose, and Definitions.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [231] "   (1) Findings.--The Congress finds that-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [232] "   (A) the Great Lakes are a valuable national resource, continuously serving the people of the United States and other nations as an important source of food, fresh water, recreation, beauty, and enjoyment; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [233] "   (B) the United States should seek to attain the goals embodied in the Great Lakes Water Quality Agreement of 1978, as amended by the Water Quality Agreement of 1987 and any other agreements and amendments, with particular emphasis on goals related to toxic pollutants; and [118(a)(1(B) amended by PL 100-688]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [234] "   (C) the Environmental Protection Agency should take the lead in the effort to meet those goals, working with other Federal agencies and State and local authorities. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [235] "   (2) Purpose.--It is the purpose of this section to achieve the goals embodied in the Great Lakes Water Quality Agreement of 1978, as amended by the Water Quality Agreement of 1987 and any other agreements and amendments, through improved organization and definition of mission on the part of the Agency, funding of State grants for pollution control in the Great Lakes area, and improved accountability for implementation of such agreement. [118(a)(2) amended by PL 100-688]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [236] "   (3) Definitions.--For purposes of this section, the term-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [237] "   (A) \"Agency\" means the Environmental Protection Agency; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [238] "   (B) \"Great Lakes\" means Lake Ontario, Lake Erie, Lake Huron (including Lake St. Clair), Lake Michigan, and Lake Superior, and the connecting channels (Saint Mary's River, Saint Clair River, Detroit River, Niagara River, and Saint Lawrence River to the Canadian Border); "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [239] "   (C) \"Great Lakes System\" means all the streams, rivers, lakes, and other bodies of water within the drainage basin of the Great Lakes: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [240] "   (D) \"Program Office\" means the Great Lakes National Program Office established by this section; [118(a)(3)(D) amended by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [241] "   (E) \"Research Office\" means the Great Lakes Research Office established by subsection (d); [118(a)(3)(E) amended by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [242] "   (F) \"area of concern\" means a geographic area located within the Great Lakes, in which beneficial uses are impaired and which has been officially designated as such under Annex 2 of the Great Lakes Water Quality Agreement; [118(a)(2)(F) added by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [243] "   (G) \"Great Lakes States\" means the States of Illinois, Indiana, Michigan, Minnesota, New York, Ohio, Pennsylvania, and Wisconsin; [118(a)(2)(G) added by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [244] "   (H) \"Great Lakes Water Quality Agreement\" means the bilateral agreement, between the United States and Canada which was signed in 1978 and amended by the Protocol of 1987; [118(a)(2)(H) added by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [245] "   (I) \"Lakewide Management Plan\" means a written document which embodies a systematic and comprehensive ecosystem approach to restoring and protecting the beneficial uses of the open waters of each of the Great Lakes, in accordance with article VI and Annex 2 of the Great Lakes Water Quality Agreement; and [118(a)(2)(I) added by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [246] "   (J) \"Remedial Action Plan\" means a written document which embodies a systematic and comprehensive ecosystem approach to restoring and protecting the beneficial uses of areas of concern, in accordance with article VI and Annex 2 of the Great Lakes Water Quality Agreement. [118(a)(2)(J) added by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [247] "   (b) Great Lakes National Program Office.--The Great Lakes National Program Office (previously established by the Administrator) is hereby established within the Agency. The Program Office shall be headed by a Director who, by reason of management experience and technical expertise relating to the Great Lakes, is highly qualified to direct the development of programs and plans on a variety of Great Lakes issues. The Great Lakes National Program Office shall be located in a Great Lakes State. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [248] "  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [249] "   (c) Great Lakes Management.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [250] "   (1) Functions.--The Program Office shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [251] "   (A) in cooperation with appropriate Federal, State, tribal, and international agencies, and in accordance with section 101(e) of this Act, develop and implement specific action plans to carry out the responsibilities of the United States under the Great Lakes Water Quality Agreement of 1978, as amended by the Water Quality Agreement of 1987 and any other agreements and amendments; [118(c)(1)(A) amended by PL 100-688]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [252] "   (B) establish a Great Lakes system-wide surveillance network to monitor the water quality of the Great Lakes, with specific emphasis on the monitoring of toxic pollutants; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [253] "   (C) serve as the liaison with, and provide information to, the Canadian members of the International Joint Commission and the Canadian counterpart to the Agency; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [254] "   (D) coordinate actions of the Agency (including actions by headquarters and regional offices thereof) aimed at improving Great Lakes water quality; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [255] "   (E) coordinate actions of the Agency with the actions of other Federal agencies and State and local authorities, so as to ensure the input of those agencies and authorities in developing water quality strategies and obtain the support of those agencies and authorities in achieving the objectives of such agreement. [New 118(c)(2)-(5) added and former (2)-(6) redesignated as new (6)-(10) by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [256] "   (2) Great Lakes Water Quality Guidance.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [257] "   (A) By June 30, 1991, the Administrator, after consultation with the Program Office, shall publish in the Federal Register for public notice and comment proposed water quality guidance for the Great Lakes System. Such guidance shall conform with the objectives and provisions of the Great Lakes Water Quality Agreement, shall be no less restrictive than the provisions of this Act and national water quality criteria and guidance, shall specify numerical limits on pollutants in ambient Great Lakes water to protect human health, aquatic life, and wildlife, and shall provide guidance to the Great Lakes States on minimum water quality standard, antidegradation policies, and implementation procedures for the Great Lakes System. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [258] "   (B) By June 30, 1992, the Administrator, in consultation with the Program Office, shall publish in the Federal Register, pursuant to this section and the Administrator's authority under this chapter, final water quality guidance for the Great Lakes System. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [259] "   (C) Within two years after such Great Lakes guidance is published, the Great Lakes States shall adopt water quality standards, antidegradation policies, and implementation procedures for waters within the Great Lakes System which are consistent with such guidance. If a Great Lakes State fails to adopt such standards, policies, and procedures, the Administrator shall promulgate them not later than the end of such two-year period. When reviewing any Great Lakes State's water quality plan, the agency shall consider the extent to which the State has complied with the Great Lakes guidance issued pursuant to this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [260] "   (3) Remedial Action Plans.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [261] "   (A) For each area of concern for which the United States has agreed to draft a Remedial Action Plan, the Program Office shall ensure that the Great Lakes State in which such area of concern is located-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [262] "   (i) submits a Remedial Action Plan to the Program Office by June 30, 1991; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [263] "   (ii) submits such Remedial Action Plan to the International Joint Commission by January 1, 1992; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [264] "   (iii) includes such Remedial Action Plans within the State's water quality plan by January 1, 1993. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [265] "   (B) For each area of concern for which Canada has agreed to draft a Remedial Action Plan, the Program Office shall, pursuant to subparagraph (c)(1)(C) of this section, work with Canada to assure the submission of such Remedial Action Plans to the International Joint Commission by June 30, 1991, and to finalize such Remedial Action Plans by January 1, 1993. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [266] "   (C) For any area of concern designated as such subsequent to the enactment of this Act, the Program Office shall (i) if the United States has agreed to draft the Remedial Action Plan, ensure that the Great Lakes State in which such area of concern is located submits such Plan to the Program Office within two years of the area's designation, submits it to the International Joint Commission no later than six months after submitting it to the Program Office, and includes such Plan in the State's water quality plan no later than one year after submitting it to the Commission; and (ii) if Canada has agreed to draft the Remedial Action Plan, work with Canada, pursuant to subparagraph (c)(1)(C) of this section, to ensure the submission of such Plan to the International Joint Commission within two years of the area's designation and the finalization of such Plan no later than eighteen months after submitting it to such Commission. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [267] "   (D) The Program Office shall compile formal comments on individual Remedial Action Plans made by the International Joint Commission pursuant to section 4(d) of Annex 2 of the Great Lakes Water Quality Agreement and, upon request by a member of the public, shall make such comments available for inspection and copying. The Program Office shall also make available, upon request, formal comments made by the Environmental Protection Agency on individual Remedial Action Plans. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [268] "   (4) Lakewide Management Plans. --The Administrator, in consultation with the Program Office shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [269] "   (A) by January 1, 1992, publish in the Federal Register a proposed Lakewide Management Plan for Lake Michigan and solicit public comments; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [270] "   (B) by January 1, 1993, submit a proposed Lakewide Management Plan for Lake Michigan to the International Joint Commission for review; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [271] "   (C) by January 1, 1994, publish in the Federal Register a final Lakewide Management Plan for Lake Michigan and begin implementation. Nothing in this subparagraph shall preclude the simultaneous development of Lakewide Management Plans for the other Great Lakes. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [272] "   (5) Spills of Oil and Hazardous Materials.--The Program Office, in consultation with the Coast Guard, shall identify areas within the Great Lakes which are likely to experience numerous or voluminous spills of oil or other hazardous materials from land based facilities, vessels, or other sources and, in consultation with the Great Lakes States, shall identify weaknesses in Federal and State programs and systems to prevent and respond to such spills. This information shall be included on at least a biennial basis in the report required by this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [273] "   (6) 5-Year Plan and Program.--The Program Office shall develop, in consultation with the States, a five-year plan and program for reducing the amount of nutrients introduced into the Great Lakes. Such program shall incorporate any management program for reducing nutrient runoff from nonpoint sources established under section 319 of this Act and shall include a program for monitoring nutrient runoff into, and ambient levels in, the Great Lakes. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [274] "   (7) 5-Year Study and Demonstration Projects.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [275] "   (A) The Program Office shall carry out a five-year study and demonstration projects relating to the control and removal of toxic pollutants in the Great Lakes, with emphasis on the removal of toxic pollutants from bottom sediments. In selecting locations for conducting demonstration projects under this paragraph, priority consideration shall be given to projects at the following locations: Saginaw Bay, Michigan; Sheboygan Harbor, Wisconsin; Grand Calumet River, Indiana; Ashtabula River, Ohio; and Buffalo River, New York. [118(c)(7) designated as (A) by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [276] "   (B) The Program Office shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [277] "   (i) by December 31, 1990, complete chemical, physical, and biological assessments of the contaminated sediments at the locations selected for the study and demonstration projects; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [278] "   (ii) by December 31, 1990, announce the technologies that will be demonstrated at each location and the numerical standard of protection intended to be achieved at each location; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [279] "   (iii) by December 31, 1992, complete full or pilot scale demonstration projects on site at each location of promising technologies to remedy contaminated sediments; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [280] "   (iv) by December 31, 1993, issue a final report to Congress on its findings. [118(c)(7)(B) added by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [281] "   (C) The Administrator, after providing for public review and comment, shall publish information concerning the public health and environmental consequences of contaminants in Great Lakes sediment. Information published pursuant to this subparagraph shall include specific numerical limits to protect health, aquatic life, and wildlife from the bioaccumulation of toxins. The Administrator shall, at a minimum, publish information pursuant to this subparagraph within 2 years of the date of the enactment of this title. [118(c)(7)(C) added by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [282] "   (8) Administrator's Responsibility.-- The Administrator shall ensure that the Program Office enters into agreements with the various organizational elements of the Agency involved in Great Lakes activities and the appropriate State agencies specifically delineating-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [283] "   (A) the duties and responsibilities of each such element in the Agency with respect to the Great Lakes; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [284] "   (B) the time periods for carrying out such duties and responsibilities; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [285] "   (C) the resources to be committed to such duties and responsibilities. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [286] "   (9) Budget Item.--The Administrator shall, in the Agency's annual budget submission to Congress, include a funding request for the Program Office as a separate budget line item. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [287] "   (10) Comprehensive Report.--Within 90 days after the end of each fiscal year, the Administrator shall submit to Congress a comprehensive report which-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [288] "   (A) describes the achievements in the preceding fiscal year in implementing the Great Lakes Water Quality Agreement of 1978, as amended by the Water Quality Agreement of 1987 and any other agreements and amendments, and shows by categories (including judicial enforcement, research, State cooperative efforts, and general administration) the amounts expended on Great Lakes water quality initiatives in such proceeding fiscal year; [118(c)(6)(A) amended by PL 100-688]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [289] "   (B) describes the progress made in such preceding fiscal year in implementing the system of surveillance of the water quality in the Great Lakes System, including the monitoring of groundwater and sediment, with particular reference to toxic pollutants; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [290] "   (C) describes the long-term prospects for improving the condition of the Great Lakes; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [291] "   (D) provides a comprehensive assessment of the planned efforts to be pursued in the succeeding fiscal year for implementing the Great Lakes Water Quality Agreement of 1978, as amended by the Water Quality Agreement of 1987 and any other agreements and amendments, which assessment shall-- [118(c)(6)(D) amended by PL 100-688]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [292] "   (i) show by categories (including judicial enforcement, research, State cooperative efforts, and general administration) the amount anticipated to be expended on Great Lakes water quality initiatives in the fiscal year to which the assessment relates; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [293] "   (ii) include a report of current programs administered by other Federal agencies which make available resources to the Great Lakes water quality management efforts. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [294] "   (11) Confined Disposal Facilities.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [295] "   (A) The Administrator, in consultation with the Assistant Secretary of the Army for Civil Works, shall develop and implement, within one year of the date of enactment of this paragraph, management plans for every Great Lakes confined disposal facility. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [296] "   (B) The plan shall provide for monitoring of such facilities, including-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [297] "   (i) water quality at the site and in the area of the site; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [298] "   (ii) sediment quality at the site and in the area of the site; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [299] "   (iii) the diversity, productivity, and stability of aquatic organisms at the site and in the area of the site; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [300] "   (iv) such other conditions as the Administrator deems appropriate. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [301] "   (C) The plan shall identify the anticipated use and management of the site over the following twenty-year period including the expected termination of dumping at the site, the anticipated need for site management, including pollution control, following the termination of the use of the site. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [302] "   (D) The plan shall identify a schedule for review and revision of the plan which shall not be less frequent than five years after adoption of the plan and every five years thereafter. [118(c)(11) added by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [303] "   (d) Great Lakes Research.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [304] "   (1) Establishment of Research Office.--There is established within the National Oceanic and Atmospheric Administration the Great Lakes Research Office. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [305] "   (2) Identification of Issues.--The Research Office shall identify issues relating to the Great Lakes resources on which research is needed. The Research Office shall submit a report to Congress on such issues before the end of each fiscal year which shall identify any changes in the Great Lakes system with respect to such issues. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [306] "   (3) Inventory.--The Research Office shall identify and inventory Federal, State, university, and tribal environmental research programs (and, to the extent feasible, those of private organizations and other nations) relating to the Great Lakes system, and shall update that inventory every four years. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [307] "   (4) Research Exchange.--The Research Office shall establish a Great Lakes research exchange for the purpose of facilitating the rapid identification, acquisition, retrieval, dissemination, and use of information concerning research projects which are ongoing or completed and which affect the Great Lakes System. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [308] "   (5) Research Program.--The Research Office shall develop, in cooperation with the Coordination Office, a comprehensive environmental research program and data base for the Great Lakes system. The data base shall include, but not be limited to, data relating to water quality, fisheries, and biota. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [309] "   (6) Monitoring.--The Research Office shall conduct, through the Great Lakes Environmental Research Laboratory, the National Sea Grant College program, other Federal laboratories, and the private sector, appropriate research and monitoring activities which address priority issues and current needs relating to the Great Lakes. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [310] "   (7) Location.--The Research Office shall be located in a Great Lakes State. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [311] "  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [312] "   (e) Research and Management Coordination.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [313] "   (1) Joint Plan. Before October 1 of each year, the Program Office and the Research Office shall prepare a joint research plan for the fiscal year which begins in the following calendar year. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [314] "   (2) Contents of Plan.--Each plan prepared under paragraph (1) shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [315] "   (A) identify all proposed research dedicated to activities conducted under the Great Lakes Water Quality Agreement of 1978, as amended by the Water Quality Agreement of 1987 and any other agreements and amendments; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [316] "   (B) include the Agency's assessment of priorities for research needed to fulfill the terms of such Agreement; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [317] "   (C) identify all proposed research that may be used to develop a comprehensive environmental data base for the Great Lakes System and establish priorities for development of such data base. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [318] "   (3) Health Research Report.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [319] "   (A) Not later than September 30, 1994, the Program Office, in consultation with the Research Office, the Agency for Toxic Substances and Disease Registry, and Great Lakes States shall submit to the Congress a report assessing the adverse effects of water pollutants in the Great Lakes System on the health of persons in Great Lakes States and the health of fish, shellfish, and wildlife in the Great Lakes System. In conducting research in support of this report, the Administrator may, where appropriate, provide for research to be conducted under cooperative agreements with Great Lakes States. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [320] "   (B) There is authorized to be appropriated to the Administrator to carry out this section not to exceed $3,000,000 for each of fiscal years 1992, 1993, and 1994. [118(e)(3) added by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [321] "   (f) Interagency Cooperation.--The head of each department, agency, or other instrumentality of the Federal Government which is engaged in, is concerned with, or has authority over programs relating to research, monitoring, and planning to maintain, enhance, preserve, or rehabilitate the environmental quality and natural resources of the Great Lakes, including the Chief of Engineers of the Army, the Chief of the Soil Conservation Service, the Commandant of the Coast Guard, the Director of the Fish and Wildlife Service, and the Administrator of the National Oceanic and Atmospheric Administration, shall submit an annual report to the Administrator with respect to the activities of that agency or office affecting compliance with the Great Lakes Water Quality Agreement of 1978, as amended by the Water Quality Agreement of 1987 and any other agreements and amendments; [118(f) amended by PL 100-688]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [322] "   (g) Relationship to Existing Federal and State Laws and International Treaties.--Nothing in this section shall be construed to affect the jurisdiction, powers, or prerogatives of any department, agency, or officer of the Federal Government or of any State government, or of any tribe, nor any powers, jurisdiction, or prerogatives of any international body created by treaty with authority relating to the Great Lakes. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [323] "   (h) Authorizations of Great Lakes Appropriations.--There are authorized to be appropriated to the Administrator to carry out this section not to exceed $ 11,000,000 per fiscal year for the fiscal years 1987, 1988, 1989 and 1990, and $25,000,000 for fiscal year 1991. Of the amounts appropriated each fiscal year-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [324] "   (1) 40 percent shall be used by the Great Lakes National Program Office on demonstration projects on the feasibility of controlling and removing toxic pollutants; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [325] "   (2) 37 percent shall be used by the Great Lakes National Program Office for the program of nutrient monitoring; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [326] "   (3) 30 percent or $3,300,000 whichever is the lesser, shall be transferred to the National Oceanic and Atmospheric Administration for use by the Great Lakes Research Office. [118(h) amended by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [327] "  SEC. 119 [33 U.S.C. 1269] Long Island Sound "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [328] "   (a) The Administrator shall continue the Management Conference of the Long Island Sound Study (hereinafter referred to as the \"Conference\") as established pursuant to section 320 of this Act, and shall establish an office (hereinafter referred to as the \"Office\") to be located on or near Long Island Sound. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [329] "   (b) Administration and Staffing of Office.--The Office shall be headed by a Director, who shall be detailed by the Administrator, following consultation with the Administrators of EPA regions I and II, from among the employees of the Agency who are in civil service. The Administrator shall delegate to the Director such authority and detail such additional staff as may be necessary to carry out the duties of the Director under this section.  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [330] "   (c) Duties of the Office.--The Office shall assist the Management Conference of the Long Island Sound Study in carrying out its goals. Specifically, the Office shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [331] "   (1) assist and support the implementation of the Comprehensive Conservation and Management Plan for Long Island Sound developed pursuant to section 320 of  this Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [332] "   (2) conduct or commission studies deemed necessary for strengthened implementation of the Comprehensive Conservation and Management Plan including, but not limited to-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [333] "   (A) population growth and the adequacy of wastewater treatment facilities, "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [334] "   (B) the use of biological methods for nutrient removal in sewage treatment plants, "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [335] "   (C) contaminated sediments, and dredging activities, "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [336] "   (D) nonpoint source pollution abatement and land use activities in the Long Island Sound watershed, "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [337] "   (E) wetland protection and restoration, "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [338] "   (F) atmospheric deposition of acidic and other pollutants into Long Island Sound, "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [339] "   (G) water quality requirements to sustain fish, shellfish, and wildlife populations, and the use of indicator species to assess environmental quality, "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [340] "   (H) State water quality programs, for their adequacy pursuant to implementation of the Comprehensive Conservation and Management Plan, and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [341] "   (I) options for long-term financing of wastewater treatment projects and water pollution control programs. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [342] "   (3) coordinate the grant, research and planning programs authorized under this section; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [343] "   (4) coordinate activities and implementation responsibilities with other Federal agencies which have jurisdiction over Long Island Sound and with national and regional marine monitoring and research programs established pursuant to the Marine Protection, Research, and Sanctuaries Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [344] "   (5) provide administrative and technical support to the conference; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [345] "   (6) collect and make available to the public publications, and other forms of information the conference determines to be appropriate, relating to the environmental quality of Long Island Sound; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [346] "   (7) not more than two years after the date of the issuance of final Comprehensive Conservation and Management Plan for Long Island Sound under section 320 this Act, and biennially thereafter, issue a report to theCongress which-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [347] "   (A) summarizes the progress made by the States in implementing the Comprehensive Conservation and Management Plan; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [348] "   (B) summarizes any modifications to the Comprehensive Conservation and Management Plan in the twelve month period immediately preceding such report; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [349] "   (C) incorporates specific recommendations concerning the implementation of the Comprehensive Conservation and Management Plan; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [350] "   (8) convene conferences and meetings for legislators from State governments and political subdivisions thereof for the purpose of making recommendations for coordinating legislative efforts to facilitate the environmental restoration of Long Island Sound and the implementation of the Comprehensive Conservation and Management Plan. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [351] "   (d) Grants.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [352] "   (1) The Administrator is authorized to make grants for projects and studies which will help implement the Long Island Sound Comprehensive Conservation and Management Plan. Special emphasis shall given be to implementation, research and planning, enforcement, and citizen involvement and education. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [353] "   (2) State, interstate, and regional water pollution control agencies, and other public or nonprofit private agencies, institutions, and organizations held to be eligible for grants pursuant to this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [354] "   (3) Citizen involvement and citizen education grants under this subsection shall not exceed 95 per centum of the costs of such work. All other grants under this subsection shall not exceed 50 per centum of the research, studies, or work. All grants shall be made on the condition that the non-Federal share of such costs are provided from non-Federal sources. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [355] "   (e) Authorizations.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [356] "   (1) There is authorized to be appropriated to the Administrator for the implementation of this section, other than subsection (d), such sums as may be necessary for each of the fiscal years 1991 through 1996. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [357] "   (2) There is authorized to be appropriated to the Administrator for the implementation of subsection (d) not to exceed $3,000,000 for each of the fiscal years 1991 through 1996. [119 added by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [358] "  SEC. 120 Lake Champlain Management Conference "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [359] "   There is established a Lake Champlain Management Conference to develop a comprehensive pollution prevention, control, and restoration plan for Lake Champlain. The Administrator shall convene the management conference within ninety days of the date of enactment of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [360] "   (b) Membership.--The Members of the Management Conference shall be comprised of-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [361] "   (1) the Governors of the States of Vermont and New York; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [362] "   (2) each interested Federal agency, not to exceed a total of five members; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [363] "   (3) the Vermont and New York Chairpersons of the Vermont, New York, Quebec Citizens Advisory Committee for the Environmental Management of Lake Champlain; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [364] "   (4) four representatives of the State legislature of Vermont; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [365] "   (5) four representatives of the State legislature of New York; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [366] "   (6) six persons representing local governments having jurisdiction over any land or water within the Lake Champlain basin, as determined appropriate by the Governors; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [367] "   (7) eight persons representing affected industries, nongovernmental organizations, public and private educational institutions, and the general public, as determined appropriate by the trigovernmental Citizens Advisory Committee for the Environmental Management of Lake Champlain, but not to be current members of the Citizens Advisory Committee. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [368] "   (c) Technical Advisory Committee.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [369] "   (1) The Management Conference shall, not later than one hundred and twenty days after the date of enactment of this section, appoint a Technical Advisory Committee. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [370] "   (2) Such Technical Advisory Committee shall consist of officials of: appropriate departments and agencies of the Federal Government; the State governments of New York and Vermont; and governments of political subdivisions of such States; and public and private research institutions. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [371] "   (d) Research Program.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [372] "   (1) The Management Conference shall establish a multi-disciplinary environmental research program for Lake Champlain. Such research program shall be planned and conducted jointly with the Lake Champlain Research Consortium. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [373] "   (e) Pollution Prevention, Control, and Restoration Plan.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [374] "   (1) Not later than three years after the date of the enactment of this section, the Management Conference shall publish a pollution prevention, control, and restoration plan (hereafter in this section referred to as the \"Plan\") for Lake Champlain. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [375] "   (2) The Plan developed pursuant to this section shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [376] "   (A) identify corrective actions and compliance schedules addressing point and nonpoint sources of pollution necessary to restore and maintain the chemical, physical, and biological integrity of water quality, a balanced, indigenous population of shellfish, fish and wildlife, recreational, and economic activities in and on the lake; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [377] "   (B) incorporate environmental management concepts and programs established in State and Federal plans and programs in effect at the time of the development of such plan; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [378] "   (C) clarify the duties of Federal and State agencies in pollution prevention and control activities, and to the extent allowable by law, suggest a timetable for adoption by the appropriate Federal and State agencies to accomplish such duties within a reasonable period of time; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [379] "   (D) describe the methods and schedules for funding of programs, activities, and projects identified in the Plan, including the use of Federal funds and other sources of funds; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [380] "   (E) include a strategy for pollution prevention and control that includes the promotion of pollution prevention and management practices to reduce the amount of pollution generated in the Lake Champlain basin. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [381] "   (3) The Administrator, in cooperation with the Management Conference, shall provide for public review and comment on the draft Plan. At a minimum, the Management Conference shall conduct one public meeting to hear comments on the draft plan in the State of New York and one such meeting in the State of Vermont. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [382] "   (4) Not less than one hundred and twenty days after the publication of the Plan required pursuant to this section, the Administrator shall approve such plan if the plan meets the requirements of this section and the Governors of the States of New York and Vermont concur. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [383] "   (5) Upon approval of the plan, such plan shall be deemed to be an approved management program for the purposes of section 319(h) of this Act and such plan shall be deemed to be an approved comprehensive conservation and management plan pursuant to section 320 of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [384] "   (f) Grant Assistance.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [385] "   (1) The Administrator may, in consultation with the Management Conference, make grants to State, interstate, and regional water pollution control agencies, and public or nonprofit agencies, institutions, and organizations. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [386] "   (2) Grants under this subsection shall be made for assisting research, surveys, studies, and modeling and technical and supporting work necessary for the development of the Plan and for retaining expert consultants in support of litigation undertaken by the State of New York and the State of Vermont to compel cleanup or obtain cleanup damage costs from persons responsible for pollution of Lake Champlain. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [387] "   (3) The amount of grants to any person under this subsection for a fiscal year shall not exceed 75 per centum of the costs of such research, survey, study and work and shall be made available on the condition that non-Federal share of such costs are provided from non-Federal sources. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [388] "   (4) The Administrator may establish such requirements for the administration of grants as he determines to be appropriate. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [389] "   (g) Definition.--For the purposes of this section, the term \"Lake Champlain drainage basin\" means all or part of Clinton, Franklin, Warren, Essex, and Washington counties in the State of New York and all or part of Franklin, Grand Isle, Chittenden, Addison, Rutland, Lamoille, Orange, Washington, Orleans, and Caledonia counties in Vermont, that contain all of the streams, rivers, lakes, and other bodies of water, including wetlands, that drain into Lake Champlain. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [390] "   (h) Statutory Interpretation.--Nothing in this section shall be construed so as to affect the jurisdiction or powers of-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [391] "   (1) any department or agency of the Federal Government or any State government; or "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [392] "   (2) any international organization or entity related to Lake Champlain created by treaty or memorandum to which the United States is a signatory. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [393] "   (i) Authorization.--There are authorized to be appropriated to the Environmental Protection Agency to carry out this section $2,000,000 for each of fiscal years 1991, 1992, 1993, 1994, and 1995. [120 added by PL 101-596]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [394] "[EDITOR'S NOTE:  Section 304 of PL 101-596 did not amend the Federal Water Pollution Control Act directly, but has some impact on its implementation. Those provisions follow.]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [395] "  SEC. 304 Federal Program Coordination "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [396] "   (a) Designation of Lake Champlain as a Special Project Area Under the Agricultural Conservation Program.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [397] "   (1) In General.--Notwithstanding any other provision of law, the Lake Champlain basin, as defined under section 120(h) of the Federal Water Pollution Control Act, shall be designated by the Secretary of Agriculture as special project area under the Agricultural Conservation Program established under section 8(b) of the Soil Conservation and Domestic Allotment Act (16 U.S.C. 590h(b)). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [398] "   (2) Technical Assistance Reimbursement.--To carry at the purposes of this subsection, the technical assistance reimbursement from the Agricultural Stabilization and Conservation Service authorized under the Soil nservation and Domestic Allotment Act, shall be inreased from 5 per centum to 10 per centum. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [399] "   (3) Comprehensive Agricultural Monitoring.--The Secretary, in consultation with the Management Conference and appropriate State and Federal agencies, shall develop a comprehensive agricultural monitoring and evaluation network for all major drainages within the Lake Champlain basin. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [400] "   (4) Allocation of Funds.--In allocating funds under this subsection, the Secretary of Agriculture shall consult with the Management Conference established under section 120 of the Federal Water Pollution Control Act and to the extent allowable by law, allocate funds to those agricultural enterprises located at sites that the Management Conference determines to be priority sites, on the basis of a concern for ensuring implementation of ipoint source pollution controls throughout the Lake champlain basin. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [401] "   (b) Cooperation of the United States Geological Survey of the Department of the Interior.--For the purpose of enhancing and expanding basic data collection and monitoring in operation in the Lake Champlain basin, as defined under section 120 of the Federal Water Pollution Control Act, the Secretary of the Interior, acting through the heads of water resources divisions of the New York and New England districts of the United States Geological Survey, shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [402] "   (1) in cooperation with appropriate universities and private research institutions, and the appropriate officials of the appropriate departments and agencies of the States of New York and Vermont, develop an integrated georaphic information system of the Lake Champlain basin; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [403] "   (2) convert all partial recording sites in the Lake Champlain basin to continuous monitoring stations with full gauging capabilities and status; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [404] "   (3) establish such additional continuous monitoring station sites in the Lake Champlain basin as are necessary to carry out basic data collection and monitoring, as defined by the Secretary of the Interior, including groundwater mapping, and water quality and sediment data collection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [405] "   (c) Cooperation of the United States Fish and Wildlife Service of The Department of the Interior.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [406] "   (1) Resource Conservation Program.--The Secretary of the Interior, acting through the United States Fish and Wildlife Service, in cooperation with the Lake Champlain Fish and Wildlife Management Cooperative and the Management Conference established pursuant to this subsection shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [407] "   (A) establish and implement a fisheries resources restoration, development and conservation program, including dedicating a level of hatchery production within the Lake Champlain basin at or above the level that existed immediately preceding the date of enactment of this Act; and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [408] "   (B) conduct a wildlife species and habitat assessment survey in the Lake Champlain basin, including-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [409] "   (i) a survey of Federal threatened and endangered species, listed or proposed for listing under the Endangered Species Act of 1973 (16 USC 1531 et seq.), New York State and State of Vermont threatened and endangered species and other species of special concern, migratory nongame species of management concern, and national resources plan species; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [410] "   (ii) a survey of wildlife habitats such as islands, wetlands, and riparian areas; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [411] "   (iii) a survey of migratory bird populations breeding, migrating and wintering within the Lake Champlain basin. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [412] "   (2) To accomplish the purposes of paragraph (1), the Director of the United States Fish and Wildlife Service is authorized to carry out activities related to-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [413] "   (A) controlling sea lampreys and other nonindigenous aquatic animal nuisances; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [414] "   (B) improving the health of fishery resources; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [415] "   (C) conducting investigations about and assessing the status of fishery resources, and disseminating that information to all interested parties; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [416] "   (D) conducting and periodically updating a survey of the fishery resources and their habitats and food chains in the Lake Champlain basin. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [417] "   (d) Authorizations.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [418] "   (1) There is authorized to be appropriated to the Department of Agriculture $2,000,000 for each of fiscal years 1991, 1992, 1993, 1994, and 1995 to carry out subsection (a) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [419] "   (2) There is authorized to be appropriated to the Department of Interior $1,000,000 for each of fiscal years 1991, 1992, 1993, 1994, and 1995 to carry out subsections (b) and (c) of this section."                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [420] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [421] "            TITLE II--GRANTS FOR CONSTRUCTION OF TREATMENT WORKS "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [422] "  SEC. 201 [33 U.S.C. 1281] Purpose "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [423] "   (a) It is the purpose of this title to require and to assist the development and implementation of waste treatment management plans and practices which will achieve the goals of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [424] "   (b) Waste treatment management plans and practices shall provide for the application of the best practicable waste treatment technology before any discharge into receiving waters, including reclaiming and recycling of water, and confined disposal of pollutants so they will not migrate to cause water or other environmental pollution and shall provide for consideration of advanced waste treatment techniques. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [425] "   (c) To the extent practicable, waste treatment management shall be on an areawide basis and provide control or treatment of all point and nonpoint sources of pollution, including in place or accumulated pollution sources. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [426] "   (d) The Administrator shall encourage waste treatent management which results  in the construction of revenue producing facilities providing for-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [427] "   (1) the recycling of potential sewage pollutants through the production of agriculture, silviculture, or aquaculture products, or any combination thereof; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [428] "   (2) the confined and contained disposal of pollutants not recycled; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [429] "   (3) the reclamation of wastewater; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [430] "   (4) the ultimate disposal of sludge in a manner that will not result in environmental hazards. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [431] "   (e) The Administrator shall encourage waste treatment management which results in integrating facilities for sewage treatment and recycling with facilities to treat, dispose of, or utilize other industrial and municipal wastes, including but not limited to solid waste and waste heat and thermal discharges. Such integrated facilities shall be designed and operated to produce revenues in excess of capital and operation and maintenance costs and such revenues shall be used by the designated regional management agency to aid in financing other environmental improvement programs. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [432] "   (f) The Administrator shall encourage waste treatment management which combines \"open space\" and recreational considerations with such management. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [433] "   (g)(1) The Administrator is authorized to make grants to any State, municipality, or intermunicipal or interstate agency for the construction of publicly owned treatment works. On and after October 1, 1984, grants under this title shall be made only for projects for secondary treatment or more stringent treatment, or any cost effective alternative thereto, new interceptors and appurtenances, and infiltration-in-flow correction., Notwithstanding the preceding sentences, the Administrator may make grants on and after October 1, 1984, for (A) any project within the definition set forth in section 212(2) of this Act, other than for a project referred to in the preceding sentence, and (B) any purpose for which a grant may be made under sections 319(h) and (i) of this Act (including any innovative and alternative approaches for the control of nonpoint sources of pollution), except that not more than 20 per centum (as determined by the Governor of the State) of the amount allotted to a State under section 205 of this Act for any fiscal year shall be obligated in such State under authority of this sentence. [201(g)(1) revised by PL 97-117; amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [434] "   (2) The Administrator shall not make grants from funds authorized for any fiscal year beginning after June 30, 1974, to any State, municipality, or intermunicipal or interstate agency for the erection, building, acquisition, alteration, remodeling, improvement, or extension of treatment works unless the grant applicant has satisfactorily demonstrated to the Administrator that-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [435] "   (A) alternative waste management techniques have been studied and evaluated and the works proposed for grant assistance will provide for the application of the best practicable waste treatment technology over the life of the works consistent with the purposes of this title; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [436] "   (B) as appropriate, the works proposed for grant assistance will take into account and allow to the extent practicable the application of technology at a later date which will provide for the reclaiming or recycling of water or otherwise eliminate the discharge of pollutants. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [437] "   (3) The Administrator shall not approve any grant after July 1, 1973, for treatment works under this section unless the applicant shows to the satisfaction of the Administrator that each sewer collection system discharging into such treatment works is not subject to excessive infiltration. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [438] "   (4) The Administrator is authorized to make grants to applicants for treatment works grants under this section for such sewer system evaluation studies as may be necessary to carry out the requirements of paragraph (3) of this subsection. Such grants shall be made in accordance with rules and regulations promulgated by the Administrator. Initial rules and regulations shall be promulgated under this paragraph not later than 120 days after the date of enactment of the Federal Water Pollution Control Act Amendments of 1972. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [439] "   (5) The Administrator shall not make grants from funds authorized for any fiscal year beginning after September 30, 1978, to any State, municipality, or intermunicipal or interstate agency for the erection, building, acquisition, alteration, remodeling, improvement, or extension of treatment works unless the grant applicant has satisfactorily demonstrated to the Administrator that innovative and alternative wastewater treatment processes and techniques which provide for the reclaiming and reuse of water, otherwise eliminate the discharge of pollutants, and utilize recycling techniques, land treatment, new or improved methods of waste treatment management for municipal and industrial waste (discharged into municipal systems) and the confined disposal of pollutants, so that pollutants will not migrate to cause water or other environmental pollution, have been fully studied and evaluated by the applicant taking into account section 201(d) of this Act and taking into account and allowing to the extent practicable the more efficient use of energy and resources. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [440] "   (6) The Administrator shall not make grants from funds authorized for any fiscal year beginning after September 30, 1978, to any State, municipality, or intermunicipal or interstate agency for the erection, building, acquisition, alteration, remodeling, improvement, or extension of treatment works unless the grant applicant has satisfactorily demonstrated to the Administrator that the applicant has analyzed the potential recreation and open space opportunities in the planning of the proposed treatment works. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [441] "   (h) A grant may be made under this section to construct a privately owned treatment works serving one or more principal residences or small commercial establishments constructed prior to, and inhabited on the date of enactment of this subsection where the Administrator finds that-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [442] "   (1) a public body otherwise eligible for a grant under subsection (g) of this section has applied on behalf of a number of such units and certified that public ownership such works is not feasible; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [443] "   (2) such public body has entered into an agreement with the Administrator which guarantees that such treatment works will be properly operated and maintained and will comply with all other requirements of section 204 of this Act and includes a system of charges to assure that each recipient of waste treatment services under such a grant will pay its proportionate share of the cost of operation and maintenance (including replacement); and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [444] "   (3) the total cost and environmental impact of providing waste treatment services to such residences or commercial establishments will be less than the cost of providing a system of collection and central treatment of such wastes. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [445] "   (i) The Administrator shall encourage waste treatment management methods, processes, and techniques which will reduce total energy requirements. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [446] "   (j) The Administrator is authorized to make a grant for any treatment works utilizing processes and techniques meeting the guidelines promulgated under section 304(d)(3) of this Act, if the Administrator determines it is in the public interest and if in the cost effectiveness study made of the construction grant application for the purpose of evaluating alternative treatment works, the life cycle cost of the treatment works for which the grant is to be made does not exceed the life cycle cost of the most effective alternative by more than 15 per centum. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [447] "   (k) No grant made after November 15, 1981, for a publicly owned treatment works, other than for facility planning and the preparation of construction plans and specifications, shall be used to treat, store, or convey the flow of any industrial user into such treatment works in excess of a flow per day equivalent to fifty thousand gallons per day of sanitary waste. This subsection shall not apply to any project proposed by a grantee which is carryingout an approved project to prepare construction plans and specifications for a facility to treat wastewater, which received its grant approval before May 15, 1980. This subsection shall not be in effect after November 15, 1981. [201(k) added by PL 96-483; amended by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [448] "   (l)(1) After the date of enactment of this subsection, Federal grants shall not be made for the purpose of providing assistance solely for facility plans, or plans, specifications, and estimates for any proposed project for the construction of treatment works. In the event that the proposed project receives a grant under this section for construction, the Administrator shall make an allowance in such grant for non-Federal funds expended during the facility planning and advanced engineering and design phase at the prevailing Federal share under section 202(a) of this Act, based on the percentage of total project costs which the Administrator determines is the general experience for such projects. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [449] "   (2)(A) Each State shall use a portion of the funds allotted to such State each fiscal year, but not to exceed 10 per centum of such funds, to advance to potential grant applicants under this title the costs of facility planning or the preparation of plans, specifications, and estimates. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [450] "   (B) Such an advance shall be limited to the allowance for such costs which the Administrator establishes under paragraph (1) of this subsection, and shall be provided only to a potential grant applicant which is a small community and which in the judgment of the State would otherwise be unable to prepare a request for a grant for construction costs under this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [451] "   (C) In the event a grant for construction costs is made under this section for a project for which an advance has been made under this paragraph, the Administrator shall reduce the amount of such grant by the allowance established under paragraph (1) of this subsection. In the event no such grant is made, the State is authorized to seek repayment of such advance on such terms and conditions as it may determine. [201(l) added by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [452] "   (m)(1) Notwithstanding any other provisions of this title, the Administrator is authorized to make a grant from any funds otherwise allotted to the State of California under section 205 of this Act to the project (and in the amount) specified in Order WQG 81-1 of the California State Water Resources Control Board. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [453] "   (2) Notwithstanding any other provisions of this Act, the Administrator shall make a grant from any funds otherwise allotted to the State of California to the city of Eureka, California, in connection with project numbered C-06-2772, for the purchase of one hundred and thirty nine acres of property as environmental mitigation for siting of the proposed treatment plant. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [454] "   (3) Notwithstanding any other provision of this Act, the Administrator shall make a grant from any funds otherwise allotted to the State of California to the city of San Diego, California, in connection with that city's aquaculture sewage process (total resources recover: system) as an innovative and alternative waste treatment process. [201(m) added by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [455] "   (n)(1) On and after October 1, 1984, upon the request of the Governor of an affected State, the Administrator is authorized to use funds available to such State under section 205 to address water quality problems due to the impacts of discharges from combined storm water and sanitary sewer overflows, which are not otherwise eligible under this subsection, were correction of such discharges is a major priority for such State. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [456] "   (2) Beginning fiscal year 1983, the Administrator shall have available $200,000,000 per fiscal year in addition to those funds authorized in section 207 of this Act to be utilized to address water quality problems of marine bays and estuaries subject to lower levels of water quality due to the impacts of discharges from combined storm water and sanitary sewer overflows from adjacent urban complexes, not otherwise eligible under this subsection. Such sums may be used as deemed appropriate by the Administrator as provided in paragraphs (1) and (2) of this subsection, upon the request of and demonstration of water quality benefits by the Governor of an affected State. [201(n) added by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [457] "   (o) The Administrator shall encourage and assist applicants for grant assistance under this title to develop and file with the Administrator a capital financing plan which, at a minimum -- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [458] "   (1) projects the future requirements for waste treatment services within the applicant's jurisdiction for a period of no less than ten years; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [459] "   (2) projects the nature, extent, timing, and costs of future expansion and reconstruction of treatment works which will be necessary to satisfy the applicant's projected future requirements for waste treatment services; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [460] "   (3) sets forth with specificity the manner in which the applicant intends to finance such future expansion and reconstruction. [201(o) added by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [461] "  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [462] "   (p) Time Limit on Resolving Certain Disputes. -- In any case in which a dispute arises with respect to the awarding of a contract for construction of treatment works by a grantee of funds under this title and a party to such dispute files an appeal with the Administrator under this title for resolution of such dispute, the Administrator shall make a final decision on such appeal within 90 days of the filing of such appeal. [201(p) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [463] "  SEC. 202 [33 U.S.C. 1282] Federal Share "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [464] "   (a)(1) The amount of any grant for treatment works made under this Act from funds authorized for any fiscal year beginning after June 30, 1971, and ending before October 1, 1984, shall be 75 per centum of the cost of construction thereof (as approved by the Administrator), and for any fiscal year beginning on or after October 1, 1984, shall be 55 per centum of the cost of construction thereof (as approved by the Administrator), unless modified to a lower percentage rate uniform throughout a State by the Governor of that State with the concurrence of the Administrator. Within ninety days after the enactment of this sentence the Administrator shall issue guidelines for concurrence in any such modification, which shall provide for the consideration of the unobligated balance of sums allocated to the State under section 205 of this Act, the need for assistance under this title in such State, and the availability of State grant assistance to replace the Federal share reduced by such modification. The payment of any such reduced Federal share shall not constitute an obligation on the part of the United States or a claim on the part of any State or grantee to reimbursement for the portion of the Federal share reduced in any such State. Any grant (other than for reimbursement) made prior to the date of enactment of the Federal Water Pollution Control Act Amendments of 1972 from any funds authorized for any fiscal year beginning after June 30, 1971, shall, upon the request of the applicant, be increased to the applicable percentage under this section. Notwithstanding the first sentence of this paragraph, in any case where a primary, secondary, or advanced waste treatment facility or its related interceptors or a project for infiltration-in-flow correction has received a grant for erection, building, acquisition, alteration, remodeling, improvement, extension, or correction before October 1, 1984, all segments and phases of such facility, interceptors, and project for infiltration-in-flow correction shall be eligible for grants at 75 per centum of the cost of construction thereof for any grant made pursuant to a State obligation which obligation occurred before October 1, 1990. Notwithstanding the first sentence of this paragraph, in the case of a project for which an application for a grant under this title has been made to the Administrator before October 1, 1984, and which project is under judicial injunction on such date prohibiting its construction, such project shall be eligible for grants at 75 percent of the cost of construction thereof. Notwithstanding the first sentence of this paragraph, in the case of the Wyoming Valley Sanitary Authority project mandated by judicial order under a proceeding begun prior to October 1, 1984, and a project for wastewater treatment for Altoona, Pennsylvania, such projects shall be eligible for grants at 75 percent of the cost of construction thereof. [202(a)(1) amended by PL 96-483; PL 97-117; PL 100-4]"                                                                                    
 [465] "   (2) The amount of any grant made after September 30, 1978, and before October 1, 1981, for any eligible treatment works or significant portion thereof utilizing innovative or alternative wastewater treatment processes and techniques referred to in section 201(g)(5) shall be 85 per centum of the cost of construction thereof unless modified by the Governor of the State with the concurrence of the Administrator to a percentage rate no less than is percentum greater than the modified uniform percentage rate in which the Administrator has concurred pursuant to paragraph (1) of this subsection. The amount of any grant made after September 30, 1981, for any eligible treatment works or unit processes and techniques thereof utilizing innovative or alternative wastewater treatment processes and techniques referred to in section 201(g)(5) shall be a percentage of the cost of construction thereof equal to 20 per centum greater than the percentage in effect under paragraph (1) of this subsection for such works or unit processes and techniques, but in no event greater than 85 per centum of the cost of construction thereof. No grant shall be made under this paragraph for construction of a treatment works in any State unless the proportion of the State contribution to the non-Federal share of construction costs for all treatment works in such State receiving a grant under this paragraph is the same as or greater than the proportion of the State contribution (if any) to the non-Federal share of construction costs for all treatment works receiving grants in such State under paragraph (1) of this subsection. [202(a)(2) amended by PL 96-483; PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [466] "   (3) In addition to any grant made pursuant to paragraph (2) of this subsection, the Administrator is authorized to make a grant to fund all of the costs of the modification or replacement of any facilities constructed with a grant made pursuant to paragraph (2) if the Administrator finds that such facilities have not met design performance specifications unless such failure is attributable to negligence on the part of any person and if such failure has significantly increased capital or operating and maintenance expenditures. In addition, the Administrator is authorized to make a grant to fund all of the costs of the modification or replacement of biodisc equipment (rotating biological contractors) in any publicly owned treatment works if the Administrator finds that such equipment has failed to meet design performance specifications, unless such failure is attributable to negligence on the part of any person, and if such failure has significantly increased capital or operating and maintenance expenditures. [202(a)(3) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [467] "   (4) For the purposes of this section, the term \"eligible treatment works\" means those treatment works in each State which meet the requirements of section 201(g)(5) of this Act and which can be fully funded from funds available for such purpose in such State. [202(a)(4) amended by PL-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [468] "   (b) The amount of the grant for any project approved by the Administrator after January 1, 1971, and before July 1, 1971, for the construction of treatment works, the actual erection, building or acquisition of which was not commenced prior to July 1, 1971, shall, upon the request of the applicant, be increased to the applicable percentage under subsection (a) of this section for grants for treatment works from funds for fiscal years beginning after June 30, 1971, with respect to the cost of such actual erection, building, or acquisition. Such increased amount shall be paid from any funds allocated to the State in which the treatment works is located without regard to the fiscal year for which such funds were authorized. Such increased amount shall be paid for such project only if-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [469] "   (1) a sewage collection system that is a part of the same total waste treatment system as the treatment works for which such grant was approved is under construction or is to be constructed for use in conjunction with such treatment works, and if the cost of such sewage collection system exceeds the cost of such treatment works, and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [470] "   (2) the State water pollution control agency or other appropriate State authority certifies that the quantity of available ground water will be insufficient, inadequate, or unsuitable for public use, including the ecological preservation and recreational use of surface water bodies, unless effluents from publicly owned treatment works after adequate treatment are returned to the ground water consistent with acceptable technological standards. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [471] "  SEC. 203 [33 U.S.C. 1283] Plans, Specifications, Estimates, and Payments "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [472] "   (a)(1) Each applicant for a grant shall submit to the Administrator for his approval, plans, specifications, and estimates for each proposed project for the construction of treatment works for which a grant is applied for under section 201(g)(1) from funds allotted to the State under section 205 and which otherwise meets the requirements of this Act. The Administrator shall act upon such plans, specifications, and estimates as soon as practicable after the same have been submitted, and his approval of any such plans, specifications, and estimates shall be deemed a contractual obligation of the United States for the payment of its proportional contribution to such project. [203(a) amended by PL 96-483; (a)(1) designated by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [473] "   (2) Agreement on Eligible Costs.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [474] "   (A) Limitation on Modifications. -- Before taking final action on any plans, specifications, and estimates submitted under this subsection after the 60th day following the date of the enactment of the Water Quality Act of 1987, the Administrator shall enter into a written agreement with the applicant which establishes and specifies which items of the proposed project are eligible for Federal payments under this section. The Administrator may not later modify such eligibility determinatons unless they are found to have been made in violation of applicable Federal statutes and regulations. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [475] "   (B) Limitation on Effect. -- Eligibility determinations under this paragraph shall not preclude the Administrator from auditing a project pursuant to section 501 of this Act, or other authority, or from withholding or recovering Federal funds for costs which are found to be unreasonable, unsupported by adequate documentation, or otherwise unallowable under applicable Federal cost principles, or which are incurred on a project which fails to meet the design specifications or effluent limitations contained in the grant agreement and permit pursuant to section 402 of this Act for such project. [203(a)(2) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [476] "   (3) In the case of a treatment works that has an estimated total cost of $8,000,000 or less (as determined by the Administrator), and the population of the applicant municipality is twenty-five thousand or less (according to the most recent United States census), upon completion of an approved facility plan, a single grant may be awarded for the combined Federal sharc of the cost of preparing construction plans and specifications, and the building and erection of the treatment works. [203(a)(3) designated by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [477] "   (b) The Administrator shall, from time to time as the work progresses, make payments to the recipient of a grant for costs of construction incurred on a project. These payments shall at no time exceed the Federal share of the cost of construction incurred to the date of the voucher covering such payment plus the Federal share of the value of the materials which have been stockpiled in the vicinity of such construction in conformity to plans and specifications for the project. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [478] "   (c) After completion of a project and approval of the final voucher by the Administrator, he shall pay out of the appropriate sums the unpaid balance of the Federal share payable on account of such project. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [479] "   (d) Nothing in this Act shall be construed to require, or to authorize the Administrator to require, that grants under this Act for construction of treatment works be made only for projects which are operable units usable for sewage collection, transportation, storage, waste treatment, or for similar purposes without additional construction. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [480] "   (e) At the request of a grantee under this title, the Administrator is authorized to provide technical and legal assistance in the administration and enforcement of any contract in connection with treatment works assisted under this title, and to intervene in any civil action involving the enforcement of such a contract. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [481] "   (f) Design/Build Projects.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [482] "   (1) Agreement. -- Consistent with State law, an applicant who proposes to construct waste water treatment works may enter into an agreement with the Administrator under this subsection providing for the preparation of construction plans and specifications and the erection of such treatment works, in lieu of proceeding under the other provisions of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [483] "   (2) Limitation on Projects. -- Agreements under this subsection shall be limited to projects under an approved facility plan which projects are-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [484] "   (A) treatment works that have an estimated total cost of $8,000,000 or less; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [485] "   (B) any of the following types of waste water treatment systems: aerated lagoons, trickling filters, stabilization ponds, land application systems, sand filters, and subsurface disposal systems. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [486] "   (3) Required Terms. -- An agreement entered into under this subsection shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [487] "   (A) set forth an amount agreed to as the maximum Federal contribution to the project, based upon a competitively bid document of basic design data and applicable standard construction specifications and a determination of the federally eligible costs of the project at the applicable Federal share under section 202 of this Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [488] "   (B) set forth dates for the start and completion of construction of the treatment works by the applicant and a schedule of payments of the Federal contribution to the project: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [489] "   (C) contain assurances by the applicant that (i) engineering and management assistance will be provided to manage the project; (ii) the proposed treatment works will be an operable unit and will meet all the requirements of this title; and (iii) not later than I year after the date specified as the date of completion of cunstruction of the treatment works, the treatment works will beoperating so as to meet the requirements of any applicable permit for such treatment works under section 402 of this Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [490] "   (D) require the applicant to obtain a bond from the contractor in an amount determined necessary by the Administrator to protect the Federal interest in the project; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [491] "   (E) contain such other terms and conditions as are necessary to assure compliance with this title (except as provided in paragraph (4) of this subsection). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [492] "   (4) Limitation on Application. -- Subsections (a), (b), and (c) of this section shall not apply to grants made pursuant to this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [493] "   (5) Reservation to Assure Compliance. --The Administrator shall reserve a portion of the grant to assure contract compliance until final project approval as defined by the Administrator. If the amount agreed to under paragraph (3)(A) exceeds the cost of designing and constructing the treatment works, the Administrator shall reallot the amount of the excess to the State in which such treatment works are located for the fiscal year in which such audit is completed. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [494] "   (6) Limitation on Obligations. -- The Administrator shall not obligate more than 20 percent of the amount allotted to a State for a fiscal year under section 205 of this Act for grants pursuant to this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [495] "   (7) Allowance. -- The Administrator shall determine an allowance for facilities planning for projects constructed under this subsection in accordance with section 201(l). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [496] "   (8) Limitation on Federal Contributions. -- In no event shall the Federal contribution for the cost of preparing construction plans and specifications and the building and erection of treatment works pursuant to this subsection exceed the amount agreed upon under paragraph (3). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [497] "   (9) Recovery Action. -- In any case in which the recipient of a grant made pursuant to this subsection does not comply with the terms of the agreement entered into under paragraph (3), the Administrator is authorized to take such action as may be necessary to recover the amount of the Federal contribution to the project. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [498] "   (10) Prevention of Double Benefits. -- A recipient of a grant made pursuant to this subsection shall not be eligible for any other grants under this title for the same project. [203(f) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [499] "  SEC. 204 [33 U.S.C. 1283] Limitations and Conditions "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [500] "   (a) Before approving grants for any project for any treatment works under section 201(g)(1) the Administrator shall determine-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [501] "   (1) that any required areawide waste treatment management plan under section 208 of this Act (A) is being implemented for such area and the proposed treatment works are included in such plan, or (B) is being developed for such area and reasonable progress is being made toward its implementation and the proposed treatment works will be included in such plan; [204(a)(1) revised by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [502] "   (2) that (A) the State in which the project is to be located (i) is implementing any required plan under section 303(e) of this Act and the proposed treatment works are in conformity with such plan, or (ii) is developing such a plan and the proposed treatment works will be in conformity with such plan, and (B) such State is in compliance with section 305(b) of this Act; [204(a)(2) revised by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [503] "   (3) that such works have been certified by the appropriate State water pollution control agency as entitled to priority over such other works in the State in accordance with any applicable State plan under section 303(e) of this Act, except that any priority list developed pursuant to section 303(e)(3)(H) may be modified by such State in accordance with regulations promulgated by the Administrator to give higher priority for grants for the Federal share of the cost of preparing construction drawings and specifications for any treatment works utilizing processes and techniques meeting the guidelines promulgated under section 304(d)(3) of this Act and for grants for the combined Federal share of the cost of preparing construction drawings and specifications and the building and erection of any treatment works meeting the requirements of the next to the last sentence of section 203(a) of this Act which utilizes processes and techniques meeting the guidelines promulgated under section 304(d)(3) of this Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [504] "   (4) that the applicant proposing to construct such works agrees to pay the non-Federal costs of such works and has made adequate provisions satisfactory to the Administrator for assuring proper and efficient operation, including the employment of trained management and operations personnel, and the maintenance of such works in accordance with a plan of operation approved by the State water pollution control agency or, as appropriate, the interstate agency, after construction thereof; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [505] "   (5) that the size and capacity of such works relate directly to the needs to be served by such works, including sufficient reserve capacity. The amount of reserve capacity provided shall be approved by the Administrator on the basis of a comparison of the cost of constructing such reserves as a part of the works to be funded and the anticipated cost of providing expanded capacity at a date when such capacity will be required after taking into account, in accordance with regulations promulgated by the Administrator, efforts to reduce total flow of sewage and unnecessary water consumption. The amount of reserve capacity eligible for a grant under this title shall be determined by the Administrator taking into account the projected population and associated commercial and industrial establishments within the jurisdiction of the applicant to be served by such treatment works as identified in an approved facilities plan, an areawide plan under section 208; or an applicable municipal master plan of development. For the purpose of this paragraph, section 208, and any such plan, projected population shall be determined on the basis of the latest information available from the United States Department of Commerce or from the States as the Administrator, by regulation, determines appropriate. Beginning October 1, 1984, no grant shall be made under this title to construct that portion of any treatment works providing reserve capacity in excess of existing needs (including existing needs of residential, commercial, industrial, and other users) on the date of approval of a grant for the erection, building, acquisition, alteration, remodeling, improvement, or extension of a project for secondary treatment or more stringent treatment or new interceptors and appurtenances, except that in no event shall reserve capacity of a facility and its related interceptors to which this subsection applies be in excess of existing needs on October 1, 1990. In any case in which an applicant proposes to provide reserve capacity greater than that eligible for Federal financial assistance under this title, the incremental costs of the additional reserve capacity shall be paid by the applicant; [204(a)(5) amended by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [506] "   (6) that no specification for bids in connection with such works shall be written in such a manner as to contain proprietary, exclusionary, or discriminatory requirements other than those based upon performance, unless such requirements are necessary to test or demonstrate a specific thing or to provide for necessary interchangeability of parts and equipment. When in the judgment of the grantee, it is impractical or uneconomical to make a clear and accurate description of the technical requirements, a \"brand name or equal\" description may be used as a means to define the performance or other salient requirements of a procurement, and in doing so the grantee need not establish the existence of any source other than the brand or source so named. [204(a)(6) amended by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [507] "   (b)(1) Notwithstanding any other provision of this title, the Administrator shall not approve any grant for any treatment works under section 201(g)(1) after March 1, 1973, unless he shall first have determined that the applicant (A) has adopted or will adopt a system of charges to assure that each recipient of waste treatment services within the applicant's jurisdiction, as determined by the Administrator, will pay its proportionate share (except as otherwise provided in this paragraph) of the costs of operation and maintenance (including replacement) of any waste treatment services provided by the applicant; and (B) has legal, institutional, managerial, and financial capability to insure adequate construction, operation, and maintenance of treatment works throughout the applicant's jurisdiction, as determined by the Administrator. In any case where an applicant which, as of the date of enactment of this sentence, uses a system of dedicated ad valorem taxes and the Administrator determines that the applicant has a system of charges which results in the distribution of operation and maintenance costs for treatment works within the applicant's jurisdiction, to each user class, in proportion to the contribution to the total cost of operation and maintenance of such works by each user class (taking into account total waste water loading of such works, the constituent elements of the waste, and other appropriate factors) and such applicant is otherwise in compliance with clause (A) of this paragraph with respect to each industrial user, then such dedicated ad valorem tax system shall be deemed to be the user charge system meeting the requirements of clause (A) of this paragraph for the residential user class and such small non-residential user classes as defined by the Administrator. In defining small non-residential users, the Administrator shall consider the volume of wastes discharged into the treatment works by such users and the constituent elements of such wastes as well as such other factors as he deems appropriate. A system of user charges which imposes a lower charge for low-income residential users (as defined by the Administrator) shall be deemed to be a user charge system meeting the requirements of clause (A) of this paragraph if the Administrator determines that such system was adopted after public notice and hearing. [204(b)(1) amended by PL 96-483; PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [508] "   (2) The Administrator shall, within one hundred and eighty days after the date of enactment of the Federal Water Pollution Control Act Amendments of 1972, and after consultation with appropriate State, interstate, municipal, and intermunicipal agencies, issue guidelines applicable to payment of waste treatment costs by industrial and nonindustrial recipients of waste treatment services which shall establish (A) classes of users of such services, including categories of industrial users; (B) criteria against which to determine the adequacy of charges imposed on classes and categories of users reflecting all factors that influence the cost of waste treatment, including strength, volume, and delivery flow rate characteristics of waste; and (C) model systems and rates of user charges typical of various treatment works serving municipal-industrial communities. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [509] "   (3) Approval by the Administrator of a grant to an interstate agency established by interstate compact for any treatment works shall satisfy any other requirement that such works be authorized by Act of Congress. [Former 204(b)(3) repealed and (4) redesignated as (3) by PL 96-483]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [510] "   (4) A system of charges which meets the requirement of clause (A) of paragraph (1) of this subsection may be based on something other than metering the sewage or water supply flow of residential recipients of waste treatment services, including ad valorem taxes. If the system of charges is based on something other than metering the Administrator shall require (A) the applicant to establish a system by which maintenance of the treatment works; and (B) the applicant to establish a procedure under which the residential user will be notified as to that portion of his total payment which will be allocated to the costs of the waste treatment services. [Former 204(b)(5) redesignated as (4) and 204(b)(6) repealed by PL 96-483]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [511] "   (c) The next to the last sentence of paragraph (5) of subsection (a) of this section shall not apply in any case where a primary, secondary, or advanced waste treatment facility or its related interceptors has received a grant for erection, building, acquisition, alteration, remodeling, improvement, or extension before October 1, 1984, and all segments and phases of such facility and interceptors shall be funded based on a 20-year reserve capacity in the case of such facility and a 20-year reserve capacity in the case of such interceptors, except that, if a grant for such interceptors has heen approved prior to the date of enactment of the Municipal Wastewater Treatment Construction Grant Amendments of 1981, such interceptors shall be funded based on the approved reserve capacity not to exceed 40 years. [204(c) added by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [512] "   (d)(1) A grant for the construction of treatment works under this title shall provide that the engineer or engineering firm supervising construction or providing architect engineering services during construction shall continue its relationship to the grant applicant for a period of one year after the completion of construction and initial operation of such treatment works. During such period such engineer or engineering firm shall supervise operation of the treatment works, train operating personnel, and prepare curricula and training material for operating personnel. Costs associated with the implementation of this paragraph shall be eligible for Federal assistance in accordance with this title. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [513] "   (2) On the date one year after the completion of construction and initial operation of such treatment works, the owner and operator of such treatment works shall certify to the Administrator whether or not such treatment works meet the design specifications and effluent limitations contained in the grant agreement and permit pursuant to section 402 of the Act for such works. If the owner and operator of such treatment works cannot certify that such treatment works meet such design specifications and effluent limitations, any failure to meet such design specifications and effluent limitations shall be corrected in a timely manner, to allow such affirmative certification, at other than Federal expense. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [514] "   (3) Nothing in this section shall be construed to prohibit a grantee under this title from requiring more assurances, guarantees, or indemnity or other contractual requirements from any party to a contract pertaining to a project assisted under this title, than those provided under this subsection. [204(d) added by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [515] "  SEC. 205 [33 U.S.C. 1285] Allotment "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [516] "   (a) Sums authorized to be appropriated pursuant to section 207 for each fiscal year beginning after June 30, 1972, and before September 30, 1977, shall be allotted by the Administrator not later than the January 1st immediately preceding the beginning of the fiscal year for which authorized, except that the allotment for fiscal year 1973 shall be made not later than 30 days after the date of enactment of the Federal Water Pollution Control Act Amendments of 1972. Such sums shall be allotted among the States by the Administrator in accordance with regulations promulgated by him, in the ratio that the estimated cost of constructing all needed publicly owned treatment works in each State bears to the estimated cost of construction of all needed publicly owned treatment works in all of the States. For the fiscal years ending June 30, 1973, and June 30, 1974, such ratio shall be determined on the basis of the table III of House Public Works Committee Print No. 92-50. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [517] "   For the fiscal year ending June 30, 1975, such ratio shall be determined one-half on the basis of table I of House Public Works Committee Print Numbered 93-28 and one-half on the, basis of table II of such print, except that no State shall receive an allotment less than that which it received for the fiscal year ending June 30, 1972, as set forth in table III of such print Allotments for fiscal years which begin after the fiscal year ending June 30, 1975 shall be made only in accordance with a revised cost estimate made and submitted to Congress in accordance with section 516(b) of this Act and only after such revised cost estimate shall have been approved by law specifically enacted hereafter. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [518] "   (b)(1) Any sums allotted to a State under subsection (a) shall be available for obligation under section 203 on and after the date of such allotment. Such sums shall continue available for obligation in such State for a period of one year after the close of the fiscal year for which such sums are authorized. Any amount so allotted which are not obligated by the end of such one-year period shall be immediately reallotted by the Administrator, in accordance with regulations promulgated by him, generally on the basis of the ratio used in making the last allotment of sums under this section. Such reallotted sums shall be added to the last allotments made to the States. Any sum made available to a State by reallotment under this subsection shall be in addition to any funds otherwise allotted to such State for grants under this title during any fiscal year. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [519] "   (2) Any sums which have been obligated under section 203 and which are released by the payment of the final voucher for the project shall be immediately credited to the State to which such sums were last allotted. Such released sums shall be added to the amounts last allotted to such State and shall be immediately available for obligation in the same manner and to the same extent as such last allotment. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [520] "   (c)(1) Sums authorized to be appropriated pursuant to section 207 for the fiscal years during the period beginning October 1, 1977, and ending September 30, 1981, shall be allotted for each such year by the Administrator not later than the tenth day which begins after the date of enactment of the Clean Water Act of 1977. Notwithstanding any other provision of law, sums authorized for the fiscal years ending September 30, 1978, September 30, 1979, September 30, 1980, and September 30, 1981, shall be allotted in accordance with table 3 of Committee Print Numbered 95-30 of the Committee on Public Works and Transportation of the House of Representatives. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [521] "   (2) Sums authorized to be appropriated pursuant to section 207 for the fiscal years 1982, 1983, 1984, and 1985 shall be allotted for each such year by the Administrator not later than the tenth day which begins after the date of enactment of the Municipal Wastewater Treatment Construction Grant Amendments of 1981. Notwithstanding any other provision of law, sums authorized for the fiscal year ending September 30, 1982, shall be allotted in accordance with table 3 of Committee Print Numbered 95-30 of the Committee on Public Works and Transportation of the House of Representatives. Sums authorized for the fiscal years ending September 30, 1983, September 30, 1984, September 30, 1985, and September 30, 1986, shall be alloted in accordance with the following table: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [522] "               ------------------------------------------------"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [523] "              States;                    Fiscal years 1983 through 1985Alabama                               .011398Alaska                                .006101Arizona                               .006885Arkansas                              .006668California                            .072901Colorado                              .008154Connecticut                           .012487Delaware                              .004965District of Columbia                  .004965Florida                               .034407Georgia                               .017234Hawaii                                007895Idaho                                 .004965Illinois                              .046101Indiana                               .024566Iowa                                  .013796Kansas                                .009201Kentucky                              .012973Louisiana                             .011205Maine                                 .007788Maryland                              .024653Massachusetts                         .034608Michigan                              .043829Minnesota                             .018735Mississippi                           .009184Missouri                              .028257Montana                               .004965Nebraska                              .005214Nevada                                .004965New Hampshire                         .010186New Jersey                            .041654New Mexico                            .004965New York                              .113097North Carolina                        .018396North Dakota                          .004965Ohio                                  .057383Oklahoma                              .008235Oregon                                .011515Pennsylvania                          .040377Rhode Island                          .006750South Carolina                        .010442South Dakota                          .004965Tennessee                             .014807Texas                                 .038726Utah                                  .005371Vermont                               .004965Virginia                              .020861Washington                            .017726West Virginia                         .015890Wisconsin                             .027557Wyoming                               .004965Samoa                                 .000915Guam                                  .000662Northern Marianas                     .000425Puerto Rico                           .013295Pacific Trust Territories             .001305Virgin Islands                        .000531United States totals                  .399996 "                                                                                                                                                                                                                                                                                                                                                                                                          
 [524] "               ------------------------------------------------"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [525] "[205(c)(2) added by PL 97-117; amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [526] "   (3) Fiscal years 1987-1990. -- Sums authorized to be appropriated pursuant to section 207 for the fiscal years 1987, 1988, 1989, and 1990 shall be allotted for each such year by the Administrator not later than the 10th day which begins after the date of the enactment of this paragraph. Sums authorized for such fiscal years shall be allotted in accordance with the following table: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [527] "               ------------------------------------------------"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [528] "               StatesAlabama                               .011309Alaska                                .006053Arizona                               .006831Arkansas                              .006616California                            .072333Colorado                              .008090Connecticut                           .012390Delaware                              .004965District of Columbia                  .004965Florida                               .034139Georgia                               .017100Hawaii                                .007833Idaho                                 .004965Illinois                              .045741Indiana                               .024374Iowa                                  .013688Kansas                                .009129Kentucky                              .012872Louisiana                             .011118Maine                                 .007829Maryland                              .024461Massachusetts                         .034338Michigan                              .043487Minnesota                             .018589Mississippi                           .009112Missouri                              .028037Montana                               .004965Nebraska                              .005173Nevada                                .004965New Hampshire                         .010107New Jersey                            .041329New Mexico                            .004965New York                              .111632North Carolina                        .018253North Dakota                          .056936Ohio                                  .056936Oklahoma                              .008171Oregon                                .011425Pennsylvania                          .040062Rhode Island                          .006791South Carolina                        .010361South Dakota                          .004965Tennessee                             .014692Texas                                 .046226Utah                                  .005329Vermont                               .004965Virginia                              .020698Washington                            .017588West Virginia                         .015766Wisconsin                             .027342Wyoming                               .004965American Samoa                        .000908Guam                                  .000657Northern Marianas                     .000422Puerto Rico                           .013191Pacific Trust Territories             .001295Virgin Islands                        .000527 "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [529] "               ------------------------------------------------"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [530] "[205(c)(3) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [531] "   (d) Sums allotted to the States for a fiscal year shall remain available for obligation for the fiscal year for which authorized and for the period of the next succeeding twelve months. The amount of any allotment not obligated by the end of such twenty-four-month period shall be immediately reallotted by the Administrator on the basis of the same ratio as applicable to sums allotted for the then current fiscal year, except that none of the funds reallotted by the Administrator for fiscal year 1978 and for fiscal years thereafter shall be allotted to any State which failed to obligate any of the funds being reallotted. Any sum made availab1e to a State by reallotment under this subsection shall be in addition to any funds otherwise allotted to such State for grants under this title during any fiscal year. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [532] "   (e) For the fiscal years, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, and 1990, no State shall receive less than one-half of 1 per centum of the total allotment under subsection (c) of this section, except that in the case of Guam, Virgin Islands, American Samoa, and the Trust Territories not more than thirty-three one-hundredths of 1 per centum on the aggregate shall be allotted to all four of these jurisdictions. For the purpose of carrying out this subsection there are authorized to be appropriated, subject to such amounts as are provided in appropriation Acts, not to exceed $75,000,000 for each of fiscal years 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, and 1990. If for any fiscal year the amount appropriated under authority of this subsection is less than the amount necessary to carry out this subsection, the amount each State receives under this subsection for such year shall bear the same ratio to the amount such State would have received under this subsection in such year if the amount necessary to carry it out had been appropriated as the amount appropriated for such year bears to the amount necessary to carry out this subsection for such year. [205(e) amended by PL 97-117; PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [533] "   (f) Notwithstanding any other provision of this section, sums made availab1e between January 1, 1975, and March 1, 1975, by the Administrator for obligation shall be available for obligation until September 30, 1978. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [534] "  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [535] "   (g)(1) The Administrator is authorized to reserve each fiscal year not to exceed 2 percentum of the amount authorized under section 207 of this title for purposes of the allotment made to each State under this section on or after October 1, 1977, except in the case of any fiscal year beginning on or after October 1, 1981, and ending before October 1, 1994, in which case the percentage authorized to be reserved shall not exceed 4 per centum or $400,000 whichever amount is the greater. Sums so reserved shall be available for making grants to such State under paragraph (2) of this subsection for the same period as sums are available from such allotment under subsection (d) of this section, and any such grant shall be available for obligation only during such period. Any grant made from sums reserved under this subsection which has not been obligated by the end of the period for which available shall be added to the amount last allotted to such State under this section and shall be immediately available for obligation in the same manner and to the same extent as such last allotment. Sums authorized to be reserved by this paragraph shall be in addition to and not in lieu of any other funds which may be authorized to carry out this subsection. [205(g)(1) amended by PL 96-483; PL 97-117; PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [536] "   (2) The Administrator is authorized to grant to any State from amounts reserved to such State under this subsection, the reasonable costs of administering any aspects of sections 201, 203, 204, and 212 of this Act the responsibility for administration of which the Administrator has delegated to such State. The Administrator may increase such grant to take into account the reasonable costs of administering an approved program under section 402 or 404, administering a statewide waste treatment management planning program under section 208(b)(4), and managing waste treatment construction grants for small communities. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [537] "   (h) The Administrator shall set aside from funds authorized for each fiscal year beginning on or after October 1, 1978, a total (as determined by the Governor of the State) of not less than 4 percent nor more than 7? percent of the sums allotted to any State with a rural population of 25 per centum or more of the total population of such State, as determined by the Bureau of the Census. The Administrator may set aside no more than 7? of the sums allotted to any other State for which the Governor requests such action. Such sums shall be available only for alternatives to conventional sewage treatment works for municipalities having a population of three thousand five hundred or less, or for the highly dispersed sections of larger municipalities, as defined by the Administrator. [205(h) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [538] "   (i) Set-Aside for Innovative and Alternative Projects. -- Not less than ? of 1 percent of funds allotted to a State for each of the fiscal years ending September 30, 1979, through September 30, 1990, under subsection (c) of this section shall be expended only for increasing the Federal share of grants for construction of treatment works utilizing innovative processes and techniques pursuant to section 202(a)(2) of this Act. Including the expenditures authorized by the preceding sentence, a total of 2 percent of the funds allotted to a State for each of the fiscal years ending September 30, 1979, and September 30, 1980, and 3 percent of the funds allotted to a State for the fiscal year ending September 30, 1981, under subsection (c) of this section shall be expended only for increasing grants for construction of treatment works pursuant to section 202(a)(2) of this Act. Including the expenditures authorized by the first sentence of this subsection, a total (as determined by the Governor of the State) of not less than 4 percent nor more than 7? percent of the funds allotted to such State under subsection (c) of this section for each of the fiscal years ending September 30, 1982, through September 30, 1990, shall be expended only for increasing the Federal share of grants for construction of treatment works pursuant to section 202(a)(2) of this Act. [205(i) amended by PL 97-117; PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [539] "   (j)(1) The Administrator shall reserve each fiscal year not to exceed 1 per centum of the sums allotted and available for obligation to each State under this section for each fiscal year beginning on or after October 1, 1981, or $100,000, whichever amount is the greater. [205(j) added by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [540] "   (2) Such sums shall be used by the Administrator to make grants to the States to carry out water quality management planning, including, but not limited to-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [541] "   (A) identifying most cost effective and locally acceptable facility and non-point measures to meet and maintain water quality standards; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [542] "   (B) developing an implementation plan to obtain State and local financial and regulatory commitments to implement measures developed under subparagraph (A); "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [543] "   (C) determining the nature, extent, and causes of water quality problems in various areas of the State and interstate region, and reporting on these annually; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [544] "   (D) determining those publicly owned treatment works which should be constructed with assistance under this title, in which areas and in what sequence, taking into account the relative degree of effluent reduction attained, the relative contributions to water quality of other point or nonpoint sources, and the consideration of alternatives to such construction, and implementing section 303(e) of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [545] "   (3) In carrying out planning with grants made under paragraph (2) of this subsection, a State shall develop jointly with local, regional, and interstate entities, a plan for carrying out the program and give funding priority to such entities and designated or undesignated public comprehensive planning organizations to carry out the purposes of this subsection. In giving such priority, the State shall allocate at least 40 percent of the amount granted to such State for a fiscal year under paragraph (2) of this subsection to regional public comprehensive planning organizations in such State and appropriate interstate organizations for the development and implementation of the plan described in this paragraph. In any fiscal year for which the Governor, in consultation with such organizations and with the approval of the Administrator, determines that allocation of at least 40 percent of such amount to such organizations will not result in significant participation by such organizations in water quality management planning and not significantly assist in development and implementation of the plan described in this paragraph and achieving the goals of this Act, the allocation to such organization may be less than 40 percent of such amount. [205(j)(3) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [546] "   (4) All activities undertaken under this subsection shall be in coordination with other related provisions of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [547] "   (5) Nonpoint Source Reservation. -- In addition to the sums reserved under paragraph (1), the Administrator shall reserve each fiscal year for each State 1 percent of the sums allotted and available for obligation to such State under this section for each fiscal year beginning on or after October 1, 1986, or $100,000, whichever is greater, for the purpose of carrying out section 319 of this Act. Sums so reserved in a State in any fiscal year for which such State does not request the use of such sums, to the extent such sums exceed $100,000, may be used by such State for other purposes under this title. [205(j)(5) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [548] "   (k) The Administrator shall allot to the State of New York from sums authorized to be appropriated for the fiscal year ending September 30, 1982, an amount necessary to pay the entire cost of conveying sewage from the Convention Center of the city of New York to the Newtown sewage treatment plant, Brooklyn-Queens area, New York. The amount allotted under this subsection shall be in addition to and not in lieu of any other amounts authorized to be allotted to such State under this Act. [205(k) added by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [549] "   (l) Marine Estuary Reservation.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [550] "   (1) Reservation of Funds.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [551] "   (A) General Rule. -- Prior to making allotments among the States under subsection (c) of this section, the Administrator shall reserve funds from sums appropriated pursuant to section 207 for each fiscal year beginning after September 30, 1986. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [552] "   (B) Fiscal Years 1987 and 1988. -- For each of fiscal years 1987 and 1988 the reservation shall be 1 percent of the sums appropriated pursuant to section 207 for such fiscal year. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [553] "   (C) Fiscal Years 1989 and 1990. -- For each of fiscal years 1989 and 1990 the reservation shall be 1? percent of the funds appropriated pursuant to section 207 for such fiscal year. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [554] "   (2) Use of Funds. -- Of the sums reserved under this subsection, two-thirds shall be available to address water quality problems of marine bays and estuaries subject to lower levels of water quality due to the impacts of discharges from combined storm water and sanitary sewer overflows from adjacent urban complexes, and one-third shall be available for the implementation of section 320 of this Act, relating to the national estuary program. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [555] "   (3) Period of availability. -- Sums reserved under this subsection shall be subject to the period of availability for obligation established by subsection (d) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [556] "   (4) Treatment of Certain Body of Water. -- For purposes of this section and section 201(n), Newark Bay, New Jersey, and the portion of the Passaic River up to Little Falls, in the vicinity of Beatties Dam, shall be treated as a marine bay and estuary. [205(l) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [557] "   (m) Discretionary Deposits Into State Water Pollution Control Revolving Funds.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [558] "   (1) From Construction Grant Allotments. -- In addition to any amounts deposited in a water pollution control revolving fund established by a State under title VI, upon request of the Governor of such State, the Administrator shall make available to the State for deposit, as capitalization grants, in such fund in any fiscal year beginning after September 30, 1986, such portion of the amounts allotted to such State under this section for such fiscal year as the Governor considers appropriate; except that (A) in fiscal year 1987, such deposit may not exceed 50 percent of the amounts allotted to such State under this section for such fiscal year, and (B) in fiscal year 1988, such deposit may not exceed 75 percent of the amounts allotted to such State under this section for this fiscal year. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [559] "   (2) Notice Requirement. -- The Governor of a State may make a request under paragraph (1) for a deposit into the water pollution control revolving fund of such State-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [560] "   (A) in fiscal year 1987 only if no later than 90 days after the date of the enactment of this subsection, and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [561] "   (B) in each fiscal year thereafter only if 90 days before the first day of such fiscal year,the State provides notice of its intent to make such deposit. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [562] "   (3) Exception. -- Sums reserved under section 205(j) of this Act shall not be available for obligation under this subsection. [205(m) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [563] "  SEC. 206 [33 U.S.C. 1286] Reimbursement and Advanced Construction "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [564] "   (a) Any publicly owned treatment works in a State on which construction was initiated after June 30, 1966, but before July 1, 1973, which was approved by the appropriate State water pollution control agency and which the Administrator finds meets the requirements of section 8 of this Act in effect at the time of the initiation of construction shall be reimbursed a total amount equal to the difference between the amount of Federal financial assistance, if any, received under such section 8 for such project and 50 per centum of the cost of such project, or 55 per centum of the project cost where the Administrator also determines that such treatment works was constructed in conformity with a comprehensive metropolitan treatment plan as described in section 8(f) of the Federal Water Pollution Control Act as in effect immediately prior to the date of enactment of the Federal Water Pollution Control Act Amendments of 1972. Nothing in this subsection shall result in any such works receiving Federal grants from all sources in excess of 80 per centum of the cost of such project. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [565] "   (b) Any publicly owned treatment works constructed with or eligible for Federal financial assistance under this Act in a State between June 30, 1956, and June 30, 1966, which was approved by the State water pollution control agency and which the Administrator finds meets the requirements of section 8 of this Act prior to the date of enactment of the Federal Water Pollution Control Act Amendments of 1972 but which was constructed without assistance under such section 8 or which received such assistance in an amount less than 30 per centum of the cost of such project shall qualify for payments and reimbursement of State or local funds used for such project from sums allocated to such State under this section in an amount which shall not exceed the difference between the amount of such assistance, if any, received for such project and 30 per centum of the cost of such project. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [566] "   (c) No publicly owned treatment works shall receive any payment or reimbursement under subsection (a) or (b) of this section unless an application for such assistance is filed with the Administrator within the one year period which begins on the date of enactment of the Federal Water Pollution Control Act Amendments of 1972. Any application filed within such one year period may be revised from time to time, as may be necessary. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [567] "   (d) The Administrator shall allocate to each qualified project under subsection (a) of this section each fiscal year for which funds are appropriated under subsection (e) of this section an amount which bears the same ratio to the unpaid balance of the reimbursement due such project as the total of such funds for such year bears to the total unpaid balance of reimbursement due all such approved projects on the date of enactment of such appropriations. The Administrator shall allocate to each qualified project under subsection (b) of this section each fiscal year for which funds are appropriated under subsection (e) of this section an amount which bears the same ratio to the unpaid balance of the reimbursement due such project as the total of such funds for such years bears to the total unpaid balance of reimbursement due all such approved projects on the date of enactment of such appropriation. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [568] "   (e) There is authorized to be appropriated to carry out subsection (a) of this section not to exceed $2,600,000,000 and to carry out subsection (b) of this section, not to exceed $750,000,000. The authorizations contained in this subsection shall be the sole source of funds for reimbursements authorized by this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [569] "   (f)(1) In any case where a substantial portion of the funds allotted to a State for the current fiscal year under this title have been obligated under section 201(g), or will be so obligated in a timely manner (as determined by the Administrator), and there is construction of any treatment work project without the aid of Federal funds and in accordance with all procedures and all requirements applicable to treatment works projects, except those procedures and requirements which limit construction of projects to those constructed with the aid of previously allotted Federal funds, the Administrator, upon his approval of an application made under this subsection therefor, is authorized to pay the Federal share of the cost of construction of such project when additional funds are allotted to the State under this title if prior to the construction of the project the Administrator approves plans, specifications, and estimates therefor in the same manner as other treatment works projects. The Administrator may not approve an application under this subsection unless an authorization is in effect for the first fiscal year in the period for which the application requests payment and such requested payment for that fiscal year does not exceed the State's expected allotment from such authorization. The Administrator shall not be required to make such requested payment for any fiscal year -- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [570] "   (A) to the extent that such payment would exceed such State's allotment of the amount appropriated for such fiscal year; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [571] "   (B) unless such payment is for a project which, on the basis of an approved funding priority list of such State, is eligible to receive such payment based on the allotment and appropriation for such fiscal year. To the extent that sufficient funds are not appropriated to pay the full Federal share with respect to a project for which obligations under the provisions of this subsection have been made, the Administrator shall reduce the Federal share to such amount less than 75 percentum as such appropriations do provide. [206 (f)(1) amended by PL 96-483]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [572] "   (2) In determining the allotment for any fiscal year under this title, any treatment works project constructed in accordance with this section and without the aid of Federal funds shall not be considered completed until an application under the provisions of this subsection with respect to such project has been approved by the Administrator, or the availability of funds from which this project is eligible for reimbursement has expired, whichever first occurs. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [573] "  SEC. 207 [33 U.S.C. 1288] Authorization "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [574] "   There is authorized to be appropriated to carry out this title, other than sections 206 (e), 208 and 209, for the fiscal year ending June 30, 1973, not to exceed $5,000,000,000, for the fiscal year ending June 30, 1974, not to exceed $6,000,000,000, and for the fiscal year ending June 30,  1975, not tO exceed $7,000,000,000, and, subject to such amounts as are provided in appropriation Acts, for the fiscal year ending September 30, 1977, $1,000,000,000 for the fiscal year ending September 30, 1978, $4,500,000,000 and for the fiscal years ending September 30, 1979, September 30, 1980, not to exceed $5,000,000,000; for the fiscal year ending September 30, 1981, not to exceed $2,548,837,000; and for the fiscal years ending September 30, 1982, September 30, 1983, September 30, 1984, and September 30, 1985, not to exceed $2,400,000,000 per fiscal year; and for each of the fiscal years ending September 30, 1986, September 30, 1987, and September 30, 1988, not to exceed $2,400,000,000; and for each of the fiscal years ending September 30, 1989, and September 30, 1990, not to exceed $1,200,000,000. [207 amended by PL 97-35; PL 97-117; PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [575] "  SEC. 208 [33 U.S.C. 1288] Areawide Waste Treatment Management "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [576] "   (a) For the purpose of encouraging and facilitating the development and implementation of area wide waste treatment management plans-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [577] "   (1) The Administrator, within ninety days after the date of enactment of this Act and after consultation with appropriate Federal, State, and local authorities, shall by regulation publish guidelines for the identification of those areas which, as a result of urban-industrial concentrations or other factors, have substantial water quality control problems. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [578] "   (2) The Governor of each State, within sixty days after publication of the guidelines issued pursuant to paragraph (1) of this subsection, shall identify each area within the State which, as a result of urban-industrial concentrations or other factors, has substantial water quality control problems. Not later than one hundred and twenty days following such identification and after consultation with appropriate elected and other officials of local governments having jurisdiction in such areas, the Governor shall designate (A) the boundaries of each such area, and (B) a single representative organization, including elected officials from local governments or their designees, capable of developing effective area wide waste treatment management plans for such area. The Governor may in the same manner at any later time identify any additional area (or modify an existing area) for which he determines areawide waste treatment management to be appropriate, designate the boundaries of such area, and designate an organization capable of developing effective areawide waste treatment management plans for such area. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [579] "   (3) With respect to any area which, pursuant to the guidelines published under paragraph (1) of this subsection, is located in two or more States, the Governors of the respective States shall consult and cooperate in carrying out the provisions of paragraph (2), with a view toward designating the boundaries of the interstate area having common water quality control problems and for which areawide waste treatment management plans would be most effective, and toward designating, within one hundred and eighty days after publication of guidelines issued pursuant to paragraph (1) of this subsection, of a single representative organization capable of developing effective areawide waste treatment management plans for such area. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [580] "   (4) If a Governor does not act, either by designating or determining not to make a designation under paragraph (2) of this subsection, within the time required by such paragraph, or if, in the case of an interstate area, the Governors of the States involved do not designate a planning organization within the time required by paragraph (3) of this subsection, the chief elected officials of local governments within an area may by agreement designate (A) the boundaries for such an area, and (B) a single representative organization including elected officials from such local governments, or their designees, capable of developing an areawide waste treatment management plan for such area. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [581] "   (5) Existing regional agencies may be designated under paragraphs (2), (3), and (4) of this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [582] "   (6) The State shall act as a planning agency for all portions of such State which are not designated under paragraphs (2), (3), or (4) of this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [583] "   (7) Designations under this subsection shall be subject to the approval of the Administrator. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [584] "   (b)(1) (A) Not later than one year after the date of designation of any organization under subsection (a) of this section such organization shall have in operation a continuing areawide waste treatment management planning process consistent with section 201 of this Act. Plans prepared in accordance with this process shall contain alternatives for waste treatment management, and be applicable to all wastes generated within the area involved. The initial plan prepared in accordance with such process shall be certified by the Governor and submitted to the Administrator not later than two years after the planning process is in operation. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [585] "   (B) For any agency designated after 1975 under subsection (a) of this section and for all portions of a State for which the State is required to act as the planning agency in accordance with subsection (a)(6), the initial plan prepared in accordance with such process shall be certified by the Governor and submitted to the Administrator not later than three years after the receipt of the initial grant award authorized under subsection (f) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [586] "   (2) Any plan prepared under such process shall include, but not be limited to-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [587] "   (A) the identification of treatment works necessary to meet the anticipated municipal and industrial waste treatment needs of the area over a twenty-year period, annually updated (including an analysis of alternative waste treatment systems), including any requirements for the acquisition of land for treatment purposes; the necessary waste water collection and urban storm water runoff systems; and a program to provide the necessary financial arrangements for the development of such treatment works, and an identification of open space and recreation opportunities that can be expected to result from improved water quality, including consideration of potential use of lands associated with treatment works and increased access to water-based recreation; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [588] "   (B) the establishment of construction priorities for such treatment works and time schedules for the initiation and completion of all treatment works; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [589] "   (C) the establishment of a regulatory program to-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [590] "   (i) implement the waste treatment management requirements of section 201(c), "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [591] "   (ii) regulate the location, modification, and construction of any facilities within such area which may result in any discharge in such area, and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [592] "   (iii) assure that any industrial or commercial waste discharged into any treatment works in such area meet applicable pretreatment requirements; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [593] "   (D) the identification of those agencies necessary to construct, operate, and maintain all facilities required by the plan and otherwise to carry out the plan; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [594] "   (E) the identification of the measures necessary to carry out the plan (including financing), the period of time necessary to carry out the plan, the costs of carrying out the plan within such time, and the economic, social, and environmental impact of carrying out the plan within such time; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [595] "   (F) a process to (i) identify, if appropriate, agriculturally and silviculturally related nonpoint sources of pollution, including return flows from irrigated agriculture, and their cumulative effects, runoff from manure disposal areas, and from land used for livestock and crop production, and (ii) set forth procedures and methods (including land use requirements) to control to the extent feasible such sources; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [596] "   (G) a process of (i) identify, if appropriate, mine-related sources of pollution including new, current, and abandoned surface and underground mine runoff, and (ii) set forth procedures and methods (including land use requirements) to control to the extent feasible such sources; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [597] "   (H) a process to (i) identify construction activity related sources of pollution, and (ii) set forth procedures and methods (including land use requirements) to control to the extent feasible such sources; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [598] "   (I) a process to (i) identify, if appropriate, salt water intrusion into rivers, lakes, and estuaries resulting from reduction of fresh water flow from any cause, including irrigation, obstruction, ground water extraction, and diversion, and (ii) set forth procedures and methods to control such intrusion to the extent feasible where such procedures and methods are otherwise a part of the waste treatment management plan; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [599] "   (J) a process to control the disposition of all residual waste generated in such area which could affect water quality; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [600] "   (K) a process to control the disposal of pollutants on land or in subsurface excavations within such area to protect ground and surface water quality. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [601] "   (3) Areawide waste treatment management plans shall be certified annually by the Governor or his designee (or Governors or their designees, where more than one State is involved) as being consistent with applicable basin plans and such areawide waste treatment management plans shall be submitted to the Administrator for his approval. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [602] "   (4)(A) Whenever the Governor of any State determines (and notifies the Administrator) that consistency with a statewide regulatory program under section 303 so requires, the requirements of clauses (F) through (K) of paragraph (2) of this subsection shall be developed and submitted by the Governor to the Administrator for approval for application to a class or category of activity throughout each State. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [603] "   (B) Any program submitted under subparagraph (A) of this paragraph which, in whole or in part, is to control the discharge or other placement of dredged or fill material into the navigable waters shall include the following: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [604] "   (i) A consultation process which includes the State agency with primary jurisdiction over fish and wildlife resources. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [605] "   (ii) A process to identify and manage the discharge or other placement of dredged or fill material which adversely affects navigable waters, which shall complement and be coordinated with a State program under section 404 conducted pursuant to this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [606] "   (iii) A process to assure that any activity conducted pursuant to a best management practice will comply with the guidelines established under section 404(b)(1), and sections 307 and 403 of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [607] "   (iv) A process to assure that any activity conducted pursuant to a best management practice can be terminated or modified for cause including, but not limited to, the following: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [608] "   (I) violation of any condition of the best management practice; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [609] "   (II) change in any activity that requires either a temporary or permanent reduction or elimination of the discharge pursuant to the best management practice. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [610] "   (v) A process to assure continued coordination with Federal and Federal-State water-related planning and reviewing processes, including the National Wetlands Inventory. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [611] "   (C) If the Governor of a State obtains approval from the Administrator of a statewide regulatory program which meets the requirements of subparagraph (B) of this paragraph and if such State is administering a permit program under section 404 of this Act, no person shall be required to obtain an individual permit pursuant to such section, or to comply with a general permit issued pursuant to such section, with respect to any appropriate activity within such State for which a best management practice has been approved by the Administrator under the program approved by the Administrator pursuant to this paragraph. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [612] "   (D)(i) Whenever the Administrator determines after public hearing that a State is not administering a program approved under this section in accordance with the requirements of this section, the Administrator shall so notify the State, and if appropriate corrective action is not taken within a reasonable time, not to exceed ninety days, the Administrator shall withdraw approval of such program. The Administrator shall not withdraw approval of any such program unless he shall first have notified the State, and made public, in writing, the reasons for such withdrawal. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [613] "   (ii) In the case of a State with a program submitted and approved under this paragraph, the Administrator shall withdraw approval of such program under this subparagraph only for a substantial failure of the State to administer its program in accordance with the requirements of this paragraph. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [614] "   (c)(1) The Governor of each State, in consultation with the planning agency designated under subsection (a) of this section, at the time a plan is submitted to the Administrator, shall designate one or more waste treatment management agencies (which may be an existing or newly created local, regional or State agency or potential subdivision) for each area designated under subsection (a) of this section and submit such designations to the Administrator. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [615] "   (2) The Administrator shall accept any such designation, unless, within 120 days of such designation, he finds that the designated management agency (or agencies) does not have adequate authority-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [616] "   (A) to carry out appropriate portions of an areawide waste treatment management plan developed under subsection (b) of this section; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [617] "   (B) to manage effectively waste treatment works and related facilities serving such area in conformance with any plan required by subsection (b) of this section; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [618] "   (C) directly or by contract, to design and construct new works, and to operate and maintain new and existing works as required by any plan developed pursuant to subsection (b) of this section; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [619] "   (D) to accept and utilize grants, or other funds from any source, for waste treatment management purposes; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [620] "   (E) to raise revenues, including the assessment of waste treatment charges; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [621] "   (F) to incur short- and long-term indebtedness; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [622] "   (G) to assure in implementation of an areawide waste treatment management plan that each participating community pays its proportionate share of treatment costs; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [623] "   (H) to refuse to receive any wastes from any municipality or subdivision thereof, which does not comply with any provisions of an approved plan under this section applicable to such area; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [624] "   (I) to accept for treatment industrial wastes. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [625] "   (d) After a waste treatment management agency having the authority required by subsection (c) has been designated under such subsection for an area and a plan for such area has been approved under subsection (b) of this section, the Administrator shall not make any grant for construction of a publicly owned treatment works under section 201(g)(1) within such area except to such designated agency and for works in conformity with such plan. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [626] "   (e) No permit under section 402 of this Act shall be issued for any point source which is in conflict with a plan approved pursuant to subsection (b) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [627] "  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [628] "   (f)(1) The Administrator shall make grants to any agency designated under subsection (a) of this section for payment of the reasonable costs of developing and operating a continuing areawide waste treatment management planning process under subsection (b) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [629] "   (2) For the two-year period beginning on the date the first grant is made under paragraph (1) of this subsection to an agency, if such first grant is made before October 1, 1977, the amount of each such grant to such agency shall be 100 per centum of the costs of developing and operating a continuing areawide waste treatment management planning process under subsection (b) of this section, and thereafter the amount granted to such agency shall not exceed 75 per centum of such costs in each succeeding one-year period. In the case of any other grant made to an agency under such paragraph (1) of this subsection, the amount of such grant shall not exceed 75 per centum of the costs of developing and operating a continuing areawide waste treatment management planning process in any year. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [630] "   (3) Each applicant for a grant under this subsection shall submit to the Administrator for his approval each proposal for which a grant is applied for under this subsection. The Administrator shall act upon such proposal as soon as practicable after it has been submitted, and his approval of that proposal shall be deemed a contractual obligation of the United States for the payment of its contribution to such proposal, subject to such amounts as are provided in appropriation Acts. There is authorized to be appropriated to carry out this subsection not to exceed $50,000,000 for the fiscal year ending June 30, 1973, not to exceed $100,000,000 for the fiscal year ending June 30, 1974, not to exceed $150,000,000 per fiscal year for the fiscal years ending June 30, 1975, September 30, 1977, September 30, 1978, September 30, 1979, and September 30, 1980, not to exceed $100,000,000 per fiscal year for the fiscal years ending September 30, 1981, and September 30, 1982, and such sums as may be necessary for fiscal years 1983 through 1990. [208(f)(3) amended by PL 96-483; PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [631] "   (g) The Administrator is authorized, upon request of the Governor or the designated planning agency, and without reimbursement, to consult with, and provide technical assistance to, any agency designated under subsection (a) of this section in the development of areawide waste treatment management plans under subsection (b) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [632] "   (h)(1) The Secretary of the Army, acting through the Chief of Engineers, in cooperation with the Administrator is authorized and directed, upon request of the Governor or the designated planning organization, to consult with, and provide technical assistance to, any agency designed under subsection (a) of this section in developing and operating a continuing areawide waste treatment management planning process under subsection (b) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [633] "   (2) There is authorized to be appropriated to the Secretary of the Army, to carry out this subsection, not to exceed $50,000,000 per fiscal year for the fiscal years ending June 30, 1973, and June 30, 1974. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [634] "   (i)(1) The Secretary of the Interior, acting through the Director of the United States Fish and Wildlife Service, shall, upon request of the Governor of a State, and without reimbursement, provide technical assistance to such State in developing a statewide program for submission to the Administrator under subsection (b)(4)(B) of this section and in implementing such program after its approval. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [635] "   (2) There is authorized to be appropriated to the Secretary of the Interior $6,000,000 to complete the National Wetlands Inventory of the United States, by December 31, 1981, and to provide information from such Inventory to States as it becomes available to assist such States in the development and operation of programs under this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [636] "   (j)(1) The Secretary of Agriculture, with the concurrence of the Administrator, and acting through the Soil Conservation Service and such other agencies of the Department of Agriculture as the Secretary may designate, is authorized and directed to establish and administer a program to enter into contracts of not less than five years nor more than ten years with owners and operators having control of rural land for the purpose of installing and maintaining measures incorporating best management practices to control nonpoint source pollution for improved water quality in those States or areas for which the Administrator has approved a plan under subsection (b) of this section where the practices to which the contracts apply are certified by the management agency designated under subsection (c)(1) of this section to be consistent with such plans and will result in improved water quality. Such contracts may be entered into during the period ending not later than September 31, 1988. Under such contracts the land owner or operator shall agree-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [637] "   (i) to effectuate a plan approved by a soil conservation district, where one exists, under this section for his farm, ranch, or other land substantially in accordance with the schedule outlined therein unless any requirement thereof is waived or modified by the Secretary; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [638] "   (ii) to forfeit all rights to further payments or grants under the contract and refund to the United States all payments and grants received thereunder, with interest, upon his violation of the contract at any stage during the time he has control of the land if the Secretary, after considering the recommendations of the soil conservation district where one exists, and the Administrator, determines that such violation is of such a nature as to warrant termination of the contract, or to make refunds or accept such payment adjustments as the Secretary may deem appropriate if he determines that the violation by the owner or operator does not warrant termination of the contract; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [639] "   (iii) upon transfer of his right and interest in the farm, ranch, or other land during the contract period to forfeit all rights to further payments or grants under the contract and refund to the United States all payments or grants received thereunder, with interest, unless the transferee of any such land agrees with the Secretary to assume all obligations of the contract; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [640] "   (iv) not to adopt any practice specified by the Secretary on the advice of the Administrator in the contract as a practice which would tend to defeat the purposes of the contract; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [641] "   (v) to such additional provisions as the Secretary determines are desirable and includes in the contract to effectuate the purposes of the program or to facilitate the practical administration of the program. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [642] "   (2) In return for such agreement by the landowner or operator the Secretary shall agree to provide technical assistance and share the cost of carrying out those conservation practices and measures set forth in the contract for which he determines that cost sharing is appropriate and in the public interest and which are approved for cost sharing by the agency designated to implement the plan developed under subsection (b) of this section. The portion of such cost (including labor) to be shared shall be that part which the Secretary determines is necessary and appropriate to effectuate the installation of the water quality management practices and measures under the contract, but not to exceed 50 per centum of the total cost of the measures set forth in the contract; except the Secretary may increase the matching cost share where he determines that (1) the main benefits to be derived from the measures are related to improving offsite water quality, and (2) the matching share requirement would place a burden on the landowner which would probably prevent him from participating in the program. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [643] "   (3) The Secretary may terminate any contract with a landowner or operator by mutual agreement with the owner or operator if the Secretary determines that such termination would be in the public interest, and may agree to such modification of contracts previously entered into as he may determine to be desirable to carry out the purposes of the program or facilitate the practical administration thereof or to accomplish equitable treatment with respect to other conservation, land use, or water quality programs. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [644] "   (4) In providing assistance under this subsection the Secretary will give priority to those areas and sources that have the most significant effect upon water quality. Additional investigations or plans may be made, where necessary, to supplement approved water quality management plans, in order to determine priorities. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [645] "   (5) The Secretary shall, where practicable, enter into agreements with soil conservation districts, State soil and water conservation agencies, or State water quality agencies to administer all or part of the program established in this subsection under regulations developed by the Secretary. Such agreements shall provide for the submission of such reports as the Secretary deems necessary, and for payment by the United States of such portion of the costs incurred in the administration of the program as the Secretary may deem appropriate. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [646] "   (6) The contracts under this subsection shall be entered into only in areas where the management agency designated under subsection (c)(1) of this section assures an adequate level of participation by owners and operators having control of rural land in such areas. Within such areas the local soil conservation district, where one exists, together with the Secretary of Agriculture, will determine the priority of assistance among individual landowners and operators to assure that the most critical water quality problems are addressed. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [647] "   (7) The Secretary, in consultation with the Administrator and subject to section 304(k) of this Act, shall, not later than September 30, 1978, promulgate regulations for carrying out this subsection and for support and cooperation with other Federal and non-Federal agencies for implementation of this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [648] "   (8) This program shall not be used to authorize or finance projects that would otherwise be eligible for assistance under the terms of Public Law 83-566. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [649] "   (9) There are hereby authorized to be appropriated to the Secretary of Agriculture $200,000,000 for fiscal year 1979, $400,000,000 for fiscal year 1980, $100,000,000 for fiscal year 1981, $100,000,000 for fiscal year 1982, and such sums as may be necessary for fiscal years 1983 through 1990, to carry out this subsection. The program authorized under this subsection shall be in addition to, and not in substitution of, other programs in such area authorized by this or any other public law. [208(j)(9) amended by PL 96-483; PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [650] "  SEC. 209 [33 U.S.C. 1289] Basin Planning "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [651] "   (a) The President, acting through the Water Resources Council, shall, as soon as practicable, prepare a Level B plan under the Water Resources Planning Act for all basins in the United States. All such plans shall be completed not later than January 1, 1980, except that priority in the preparation of such plans shall be given to those basins and portions thereof which are within those areas designated under paragraphs (2), (3), and (4) of subsection (a) of section 208 of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [652] "   (b) The President, acting through the Water Resources Council, shall report annually to Congress on progress being made in carrying out this section. The first such report shall be submitted not later than January 31, 1973. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [653] "   (c) There is authorized to be appropriated to carry out this section not to exceed $200,000,000. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [654] "  SEC. 210 [33 U.S.C. 1290] Annual Survey "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [655] "   The Administrator shall annually make a survey to determine the efficiency of the operation and maintenance of treatment works constructed with grants made under this Act, as compared to the efficiency planned at the time the grant was made. The results of such annual survey shall be included in the report required under section 516(a) of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [656] "  SEC. 211 [33 U.S.C. 1291] Sewage Collection Systems "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [657] "   (a) No grant shall be made for a sewage collection system under this title unless such grant (1) is for replacement or major rehabilitation of an existing collection system and is necessary to the total integrity and performance of the waste treatment works servicing such community, or (2) is for a new collection system in an existing community with sufficient existing or planned capacity adequately to treat such collected sewage and is consistent with section 201 of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [658] "   (b) If the Administrator uses population density as a test for determining the eligibility of a collector sewer for assistance it shall be only for the purpose of evaluating alternatives and determining the needs for such system in relation to ground or surface water quality impact. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [659] "   (c) No grant shall be made under this title from funds authorized for any fiscal year during the period beginning October 1, 1977, and ending September 30, 1990, for treatment works for control of pollutant discharges from separate storm sewer systems. [211(c) amended by PL 97-117; PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [660] "  SEC. 212 [33 U.S.C. 1292] Definitions "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [661] "   As used in this title-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [662] "   (1) The term \"construction\" means any one or more of the following: preliminary planning to determine the feasibility of treatment works, engineering, architectural, legal, fiscal, or economic investigations or studies, surveys, designs, plans, working drawings, specifications, procedures, field testing of innovative or alternative waste water treatment processes and techniques meeting guidelines promulgated under section 304(d)(3) of this Act, or other necessary actions, erection, building, acquisition, alteration, remodeling, improvement, or extension of treatment works, or the inspection or supervision of any of the foregoing items. [212(1) amended by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [663] "   (2)(A) The term \"treatment works\" means any devices and systems used in the storage, treatment, recycling, and reclamation of municipal sewage or industrial wastes of a liquid nature to implement section 201 of this act, or necessary to recycle or reuse water at the most economical cost over the estimated life of the works, including intercepting sewers, outfall sewers, sewage collection systems, pumping, power, and other equipment, and their appurtenances; extensions, improvements, remodeling, additions, and alterations thereof; elements essential to provide a reliable recycled supply such as standby treatment units and clear well facilities; and any works, including site acquisition of the land that will be an integral part of the treatment process (including land use for the storage of treated wastewater in land treatment systems prior to land application) or is used for ultimate disposal of residues resulting from such treatment. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [664] "   (B) In addition to the definition contained in subparagraph (A) of this paragraph, \"treatment works\" means any other method or system for preventing, abating, reducing, storing, treating, separating, or disposing of municipal waste, including storm water runoff, or industrial waste, including waste in combined storm water and sanitary sewer systems. Any application for construction grants which includes wholly or in part such methods or systems shall, in accordance with guidelines published by the Administrator pursuant to subparagraph (C) of this paragraph, contain adequate data and analysis demonstrating such proposal to be, over the life of such works, the most cost efficient alternative to comply with sections 301 or 302 of this act, or the requirements of section 201 of this act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [665] "   (C) For the purposes of subparagraph (B) of this paragraph, the Administrator shall, within one hundred and eighty days after the date of enactment of this title, publish and thereafter revise no less often than annually, guidelines for the evaluation of methods, including cost effective analysis, described in subparagraph (B) of this paragraph. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [666] "   (3) The term \"replacement\" as used in this title means those expenditures for obtaining and installing equipment, accessories, or appurtenances during the useful life of the treatment works necessary to maintain the capacity and performance for which such works are designed and constructed. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [667] "  SEC. 213 [33 U.S.C. 1293] Loan Guarantees for Construction of Treatment Works "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [668] "   (a) Subject to the conditions of this section and to such terms and conditions as the Administrator determines to be necessary to carry out the purposes of this title, the Administrator is authorized to guarantee, and to make commitments to guarantee, the principal and interest (including interest accruing between the date of default and the date of the payment in full of the guarantee) of any loan, obligation, or participation therein of any State, municipality, or intermunicipal or interstate agency issued directly and exclusively to the Federal Financing Bank to finance that part of the cost of any grant-eligible project for the construction of publicly owned treatment works not paid for with Federal financial assistance under this title (other than this section), which project the Administrator has determined to be eligible for such financial assistance under this title, including, but not limited to, projects eligible for reimbursement under section 206 of this title. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [669] "   (b) No guarantee, or commitment to make a guarantee, may be made pursuant to this section-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [670] "   (1) unless the Administrator certifies that the issuing body is unable to obtain on reasonable terms sufficient credit to finance its actual needs without such guarantee; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [671] "   (2) unless the Administrator determines that there is a reasonable assurance of repayment of the loan, obligation, or participation therein. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [672] "   A determination of whether financing is available at reasonable rates shall be made by the Secretary of the Treasury with relationship to the current average yield on outstanding marketable obligations of municipalities of comparable maturity. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [673] "   (c) The Administrator is authorized to charge reasonable fees for the investigation of an application for a guarantee and for the issuance of a commitment to make a guarantee. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [674] "   (d) The Administrator, in determining whether there is a reasonable assurance of repayment, may require a commitment which would apply to such repayment. Such commitment may include, but not be limited to, any funds received by such grantee from the amounts appropriated under section 206 of this act. [213(d) amended by PL 96-483]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [675] "  SEC. 214 [33 U.S.C. 1294] Public Information "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [676] "   The Administrator shall develop and operate within one year of the date of enactment of this section, a continuing program of public information and education on recycling and reuse of wastewater (including sludge), the use of land treatment, and methods for the reduction of wastewater volume. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [677] "  SEC. 215 [33 U.S.C. 1295] Requirements for American Materials "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [678] "   Notwithstanding any other provision of law, no grant for which application is made after February 1, 1978, shall be made under this title for any treatment works unless only such unmanufactured articles, materials, and supplies as have been mined or produced in the United States, and only such manufactured articles, materials, and supplies as have been manufactured in the United States, substantially all from articles, materials, or supplies mined, produced, or manufactured, as the case may be, in the United States will be used in such treatment works. This section shall not apply in any case where the Administrator determines, based upon those factor the Administrator deems relevant, including the available resources of the agency, it to be inconsistent with the public interest (including multilateral government procurement agreements) or the cost to be unreasonable, or if articles, materials, or supplies of the class or kind to be used or the articles, material, or supplies from which they are manufactured are not mined, produced, or manufactured, as the case may be, in the United States in sufficient and reasonably available commercial quantities and of a satisfactory quality. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [679] "  SEC. 216 [33 U.S.C. 1295] Determination of Priority "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [680] "   Notwithstanding any other provision of this Act, the determination of the priority to be given each category of projects for construction of publicly owned treatment works within each State shall be made solely by that State, except that if the Administrator, after a public hearing, determines that a specific project will not result in compliance with the enforceable requirements of this Act, such project shall be removed from the State's priority list and such State shall submit a revised priority list. These categories shall include, but not be limited to (A) secondary treatment, (B) more stringent treatment, (C) infiltration-in-flow correction,(D) major sewer system rehabilitation, (E) new collector sewers and appurtenances, (F) new interceptors and appurtenances, and (G) correction of combined sewer overflows. Not less than 25 per centum of funds allocated to a State in any fiscal year under this title for construction of publicly owned treatment works in such State shall be obligated for those types of projects referred to in clauses (D, (E), (F), and (G) of this section, if such projects are on such State's priority list for that year and are otherwise eligible for funding in that fiscal year. It is the policy of Congress that projects for wastewater treatment and management undertaken with Federal financial assistance under this Act by any State, municipality, or intermunicipal or interstate agency shall be projects which, in the estimation of the State, are designed to achieve optimum water quality management, consistent with the public health and water quality goals and requirements of the Act. [216 amended by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [681] "  SEC. 217 [33 U.S.C. 1297] Cost-Effectiveness Guidelines "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [682] "   Any guidelines for cost-effectiveness analysis published by the Administrator under this title shall provide for the identification and selection of cost effective alternatives to comply with the objective and goals of this Act and sections 201(b), 201(d), 201(g)(2)(A), and 301(b)(2)(B) of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [683] "  SEC. 218 [33 U.S.C. 1298] Cost Effectiveness "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [684] "   (a) It is the policy of Congress that a project for waste treatment and management undertaken with Federal financial assistance under this Act by any State, municipality, or intermunicipal or interstate agency shall be considered as an overall waste treatment system for waste treatment and management, and shall be that system which constitutes the most economical and cost-effective combination of devices and systems used in the storage, treatment, recycling, and reclamation of municipal sewage or industrial wastes of a liquid nature to implement section 201 of this Act, or necessary to recycle or reuse water at the most economical cost over the estimated life of the works, including intercepting sewers, outfall sewers, sewage collection systems, pumping power, and other equipment, and their appurtenances; extension, improvements, remodeling, additions, and alterations thereof; elements essential to provide a reliable recycled supply such as standby treatment units and clear well facilities; and any works, including site acquisition of the land that will be an integral part of the treatment process (including land use for the storage of treated wastewater in land treatment systems prior to land application) or which is used for ultimate disposal of residues resulting from such treatment; water efficiency measures and devices; and any other method or system for preventing, abating, reducing, storing, treating, separating, or disposing of municipal waste, including storm water runoff, or industrial waste, including waste in combined storm water and sanitary sewer systems; to meet the requirements of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [685] "   (b) In accordance with the policy set forth in subsection (a) of this section, before the Administrator approves any grant to any State, municipality, or inter municipal or interstate agency for the erection, building, acquisition, alteration, remodeling, improvement, or extension of any treatment works the Administrator shall determine that the facilities plan of which such treatment works are a part constitutes the most economical and cost-effective combination of treatment works over the life of the project to meet the requirements of this Act, including, but not limited to, consideration of construction costs, operation, maintenance, and replacement costs. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [686] "   (c) In furtherance of the policy set forth in subsection (a) of this section, the Administrator shall require value engineering review in connection with any treatment works, prior to approval of any grant for the erection, building, acquisition, alteration, remodeling, improvement, or extension of such treatment works, in any case in which the cost of such erection, building, acquisition, alteration, remodeling, improvement, or extension is projected to be in excess of $10,000,000. For purposes of this subsection, the term \"value engineering review\" means a specialized cost control technique which uses a systematic and creative approach to identify and to focus on unnecessarily high cost in a project in order to arrive at a cost saving without sacrificing the reliability or efficiency of the project. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [687] "   (d) This section applies to projects for waste treatment and management for which no treatment works including a facilities plan for such project have received Federal financial assistance for the preparation of construction plans and specifications under this Act before the date of enactment of this section. [218 added by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [688] "  SEC. 219 [33 U.S.C. 1299] State Certification of Projects "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [689] "   Whenever the Governor of a State which has been delegated sufficient authority to administer the construction grant program under this title in that State certifies to the Administrator that a grant application meets applicable requirements of Federal and State law for assistance under this title, the Administrator shall approve or disapprove such application within 45 days of the date of receipt of such application. If the Administrator does not approve or disapprove such application within 45 days of receipt, the application shall be deemed approved. If the Administrator disapproves such application the Administrator shall state in writing the reasons for such disapproval. Any grant approved or deemed approved under this section shall be subject to amounts provided in appropriation Acts. [219 added by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [690] "                    TITLE III--STANDARDS AND ENFORCEMENT "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [691] "  SEC. 301 [33 U.S.C. 1311] Effluent Limitations "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [692] "   (a) Except as in compliance with this section and sections 302, 306, 307, 318, 402, and 404 of this Act, the discharge of any pollutant by any person shall be unlawful. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [693] "   (b) In order to carry out the objective of this Act there shall be achieved-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [694] "   (1)(A) not later than July 1, 1977, effluent limitations for point sources, other than publicly owned treatment works, (i) which shall require the application of the best practicable control technology currently available as defined by the Administrator pursuant to section 304(b) of this Act, or (ii) in the case of a discharge into a publicly owned treatment works which meets the requirements of subparagraph (B) of this paragraph, which shall require compliance with any applicable pretreatment requirements and any requirements under section 307 of this Act; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [695] "   (B) for publicly owned treatment works in existence on July 1, 1977, or approved pursuant to section 203 of this Act prior to June 30, 1974 (for which construction must be completed within four years of approval), effluent limitations based upon secondary treatment as defined by the Administrator pursuant to section 304(d)(1) of this Act; or, "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [696] "   (C) not later than July 1, 1977, any more stringent limitation, including those necessary to meet water quality standards, treatment standards, or schedule of compliance, established pursuant to any State law or regulations, (under authority preserved by section 510) or any other Federal law or regulation, or required to implement any applicable water quality standard established pursuant to this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [697] "   (2)(A) for pollutants identified in subparagraphs (C), (D), and (F) of this paragraph, effluent limitations for categories and classes of point sources, other than publicly owned treatment works, which (i) shall require application of the best available technology economically achievable for such category or class, which will result in reasonable further progress toward the national goal of eliminating the discharge of all pollutants, as determined in accordance with regulations issued by the Administrator pursuant to section 304(b)(2) of this Act, which such effluent limitations shall require the elimination of discharges of all pollutants if the Administrator finds, on the basis of information available to him (including information developed pursuant to section 315), that such elimination is technologically and economically achievable for category or class of point sources as determined in accordance with regulations issued by the Administrator pursuant to section 304(b)(2) of this Act or (ii) in the case of the introduction of a pollutant into a publicly owned treatment works which meets the requirements of subparagraph (b) of this paragraph, shall require compliance with any applicable pretreatment requirements and any other requirement under section 307 of this Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [698] "   (B) [Repealed] [301(b)(2)(B) repealed by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [699] "   (C) with respect to all toxic pollutants referred to in table 1 of Committee Print Number 95-30 of the Committee on Public Works and Transportation of the House of Representatives compliance with effluent limitations in accordance with subparagraph (A) of this paragraph as expeditiously as practicable but in no case later than three years after the date such limitations are promulgated under section 304(b), and in no case later than March 31, 1989. [301(b)(2)(C) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [700] "   (D) for all toxic pollutants listed under paragraph (1) of subsection (a) of section 307 of this Act which are not referred to in subparagraph (C) of this paragraph compliance with effluent limitation in accordance with subparagraph (A) of this paragraph as expeditiously as practicable, but in no case later than three years after date such limitations are promulgated under section 304(b), and in no case later than March 31, 1989; [301(b)(2)(D) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [701] "   (E) as expeditiously as practicable but in no case later than three years after the date such limitations are promulgated under section 304(b), and in no case later than March 31, 1989, compliance with effluent limitations for categories and classes of point sources, other than publicly owned treatment works, which in the case of pollutants identified pursuant to section 304(a)(4) of this Act shall require application of the best conventional pollutant control technology as determined in accordance with regulations issued by the Administrator pursuant to section 304(b)(4) of this Act; and [301(b)(2)(E) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [702] "   (F) for all pollutants (other than those subject to subparagraphs (C), (D), or (E) of this paragraph) compliance with effluent limitations in accordance with subparagraph (A) of this paragraph as expeditiously as practicable but in no case later than 3 years after the date such limitations are established, and in no case later than March 31, 1989. [301(b)(2)(F) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [703] "   (3)(A) for effluent limitations under paragraph (1)(A)(i) of this subsection promulgated after January 1, 1982, and requiring a level of control substantially greater or based on fundamentally different control technology than under permits for an industrial category issued before such date, compliance as expeditiously as practicable but in no case later than three years after the date such limitations are promulgated under section 304(b), and in no case later than March 31, 1989; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [704] "   (B) for any effluent limitation in accordance with paragraph (1)(A)(i), (2)(A)(i), or (2)(E) of this subsection established only on the basis of section 402(a)(1) in a permit issued after enactment of the Water Quality Act of 1987, compliance as expeditiously as practicable but in no case later than three years after the date such limitations are established, and in no case later than March 31, 1989. [301(b)(3) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [705] "   (c) The Administrator may modify the requirements of subsection (b)(2)(A) of this section with respect to any point source for which a permit application is filed after July 1, 1977, upon a showing by the owner or operator of such point source satisfactory to the Administrator that such modified requirements (1) will represent the maximum use of technology within the economic capability of the owner or operator; and (2) will result in reasonable further progress toward the elimination of the discharge of pollutants. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [706] "   (d) Any effluent limitation required by paragraph (2) of subsection (b) of this section shall be reviewed at least every five years and, if appropriate, revised pursuant to the procedure established under such paragraph. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [707] "   (e) Effluent limitations established pursuant to this section or section 302 of this Act shall be applied to all point sources of discharge of pollutants in accordance with the provisions of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [708] "   (f) Notwithstanding any other provisions of this Act it shall be unlawful to discharge any radiological, chemical, or biological warfare agent, any high-level radioactive waste, or any medical waste, into the navigable waters. [301(f) amended by PL 100-688]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [709] "   (g) Modifications for Certain Nonconventional Pollutants.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [710] "   (1) General Authority. -- The Administrator, with the concurrence of the State, may modify the requirements of subsection (b)(2)(A) of this section with respect to the discharge from any point source of ammonia, chlorine, color, iron, and total phenols (4AAP) (when determined by the Administrator to be a pollutant covered by subsection (b)(2)(F)) and any other pollutant which the Administrator lists under paragraph (4) of this subsection. [Former 301(g)(1) deleted and new (1) and (2) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [711] "   (2) Requirements for Granting Modifications. -- A modification under this subsection shall be granted only upon a showing by the owner or operator of a point source satisfactory to the Administrator that-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [712] "   (A) such modified requirements will result at a minimum in compliance with the requirements of subsection (b)(1)(A) or (C) of this section, whichever is applicable; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [713] "   (B) such modified requirements will not result in any additional requirements on any other point or nonpoint source; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [714] "   (C) such modification will not interfere with the attainment of maintenance of that water quality which shall assure protection of public water supplies, and the protection and propagation of a balanced population of shellfish, fish, and wildlife, and allow recreational activities, in and on the water and such modification will not result in the discharge of pollutants in quantities which may reasonably be anticipated to pose an unacceptable risk to human health or the environment because of bioaccumulation, persistency in the environment, acute toxicity, chronic toxicity (including carcinogenicity, mutagenicity or teratogenicity), or synergistic propensities. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [715] "   (3) Limitation on Authority to Apply for Subsection (c) Modification -- If an owner or operator of a point source applies for a modification under this subsection with respect to the discharge of any pollutant, such owner or operator shall be eligible to apply for modification under subsection (c) of this section with respect to such pollutant only during the same time-period as he is eligible to apply for a modification under this subsection. [Former 301(g)(2) amended and redesignated as (3) by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [716] "   (4) Procedures for Listing Additional Pollutants.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [717] "   (A) General Authority. -- Upon petition of any person, the Administrator may add any pollutant to the list of pollutants for which modification under this section is authorized (except for pollutants identified pursuant to section 304(a)(4) of this Act, toxic pollutants subject to section 307(a) of this Act, and the thermal component of discharges) in accordance with the provisions of this paragraph. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [718] "   (B) Requirements for Listing.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [719] "   (i) Sufficient Information. -- The person petitioning for listing of an additional pollutant under this subsection shall submit to the Administrator sufficient information to make the determinations required by this subparagraph. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [720] "   (ii) Toxic Criteria Determination. -- The Administrator shall determine whether or not the pollutant meets the criteria for listing as a toxic pollutant under section 307(a) of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [721] "   (iii) Listing as Toxic Pollutant. -- If the Administrator determines that the pollutant meets the criteria for listing as a toxic pollutant under section 307(a), the Administrator shall list the Pollutant as a toxic pollutant under section 307(a). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [722] "   (iv) Nonconventional Criteria Determination. -- If the Administrator determines that the pollutant does not meet the criteria for listing as a toxic pollutant under such section and determines that adequate test methods and sufficient data are available to make the determinations required by paragraph (2) of this subsection with respect to the pollutant, the Administrator shall add the pollutant to the list of pollutants specified in paragraph (1) of this subsection for which modifications are authorized under this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [723] "   (C) Requirements for Filing of Petitions. -- A petition for listing of a pollutant under this paragraph-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [724] "   (i) must be filed not later than 270 days after the date of promulgation of an applicable effluent guideline under section 304; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [725] "   (ii) may be filed before promulgation of such guideline; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [726] "   (iii) may be filed with an application for a modification under paragraph (1) with respect to the discharge of such pollutant. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [727] "   (D) Deadline for Approval of Petition. --A decision to add a pollutant to the list of pollutants for which modifications under this subsection are authorized must be made within 270 days after the date of promulgation of an applicable effluent guideline under section 304. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [728] "   (E) Burden of Proof. -- The burden of proof for making the determinations under subparagraph (B) shall be on the petitioner. [301(g)(4) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [729] "   (5) Removal of Pollutants. -- The Administrator may remove any pollutant from the list of pollutants for which modifications are authorized under this subsection if the Administrator determines that adequate test methods and sufficient data are no longer available for determining whether or not modifications may be granted with respect to such pollutant under paragraph (2) of this subsection. [301(g)(5) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [730] "  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [731] "   (h) The Administrator, with the concurrence of the State, may issue a permit under section 402 which modifies the requirements of subsection (b)(1)(B) of this section with respect to the discharge of any pollutant from a publicly owned treatment works into marine waters, if the applicant demonstrates to the satisfaction of the Administrator that-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [732] "   (1) there is an applicable water quality standard specific to the pollutant for which the modification is requested, which has been identified under section 304(a)(6) of this Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [733] "   (2) the discharge of pollutants in accordance with such modified requirements will not interfere, alone or in combination with pollutants from other sources, with the attainment or maintenance of that water quality which assures protection of public water supplies and protection and propagation of a balanced, indigenous population of shellfish, fish and wildlife, and allows recreational activities, in and on the water; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [734] "   (3) the applicant has established a system for monitoring the impact of such discharge on a representative sample of aquatic biota, to the extent practicable, and the scope of such monitoring is limited to include only those scientific investigations which are necessary to study the effects of the proposed discharge; [301(h)(3) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [735] "[EDITOR'S NOTE:  Section 303(b)(2) of PL 100-4 states the amendment to 301(h)(3), \"shall only apply to modifications and renewals of modifications which are tentatively or finally approved after the date of the enactment of this Act.\"]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [736] "   (4) such modified requirements will not result in any additional requirements on any other point or nonpoint source; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [737] "   (5) all applicable pretreatment requirements for sources introducing waste into such treatment works will be enforced; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [738] "   (6) in the case of any treatment works serving a population of 50,000 or more, with respect to any toxic pollutant introduced into such works by an industrial discharger for which pollutant there is no applicable pretreatment requirement in effect, sources introducing waste into such works are in compliance with all applicable pretreatment requirements, the applicant will enforce such requirements, and the applicant has in effect a pretreatment program which, in combination with the treatment of discharges from such works, removes the same amount of such pollutant as would be removed if such works were to apply secondary treatment to discharges and if such works had no pretreatment program with respect to such pollutant; [New 301(h)(6) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [739] "   (7) to the extent practicable, the applicant has established a schedule of activities designed to eliminate the entrance of toxic pollutants from nonindustrial sources into such treatment works; [Former 301(h)(8) deleted by PL 97-117; former (6) and (7) redesignated as (7) and (8) by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [740] "   (8) there will be no new or substantially increased discharges from the point source of the pollutant to which the modification applies above that volume of discharge specified in the permit; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [741] "   (9) the applicant at the time such modification becomes effective will be discharging effluent which has received at least primary or equivalent treatment and which meets the criteria established under section 304(a)(1) of this Act after initial mixing in the waters surrounding or adjacent to the point at which such effluent is discharged. [301(h)(9) added by PL 100-4]For the purposes of this subsection the phrase \"the discharge of any pollutant into marine waters\" refers to a discharge into deep waters of the territorial sea or the waters of the contiguous zone, or into saline estuarine waters where there is strong tidal movement and other hydrological and geological characteristics which the Administrator determines necessary to allow compliance with paragraph (2) of this subsection, and section 101(a)(2) of this Act. For the purposes of paragraph (9), \"primary or equivalent treatment\" means treatment by screening, sedimentation, and skimming adequate to remove at least 30 percent of the biological oxygen demanding material and of the suspending solids in the treatment works influent, and disinfection, where appropriate. A municipality which applies secondary treatment shall be eligible to receive a permit pursuant to this subsection which modifies the requirements of subsection (b)(1)(B) of this section with respect to the discharge of any pollutant from any treatment works owned by such municipality into marine waters. No permit issued under this subsection shall authorize the discharge of sewage sludge into marine waters. In order for a permit to be issued under this subsection for the discharge of a pollutant into marine waters, such marine waters must exhibit characteristics assuring that water providing dilution does not contain significant amounts of previously discharged effluent from such treatment works. No permit issued under this subsection shall authorize the discharge of any pollutant into saline estuarine waters which at the time of application do not support a balanced indigenous population of shellfish, fish and wildlife, or allow recreation in and on the waters or which exhibit ambient water quality below applicable water quality standards adopted for the protection of public water supplies, shellfish, fish and wildlife or recreational activities or such other standards necessary to assure support and protection of such uses. The prohibition contained in the preceding sentence shall apply without regard to the presence or absence of a causal relationship between such characteristics and the applicant's current or proposed discharge. Notwithstanding any other provisions of this subsection, no permit may be issued under this subsection for discharge of a pollutant into the New York Bight Apex consisting of the ocean waters of the Atlantic Ocean westward of 73 degrees 30 minutes west longitude and northward of 40 degrees 10 minutes north latitude. [301(h) amended by PL 97-117; PL 100-4]"                                                                                                                
 [742] "   (i)(1) Where construction is required in order for a planned or existing publicly owned treatment works to achieve limitations under subsection (b)(1)(B) or (b)(1)(C) of this section, but (A) construction cannot be completed within the time required in such subsection, or (B) the United States has failed to make financial assistance under this Act available in time to achieve such limitations by the time specified in such subsection, the owner or operator of such treatment works may request the Administrator (or if appropriate the State) to issue a permit pursuant to section 402 of this Act or to modify a permit issued pursuant to that section to extend such time for compliance. Any such request shall be filed with the Administrator (or if appropriate the State) within 180 days after the date of enactment of the Water Quality Act of 1987. The Administrator (or if appropriate the State) may grant such request and issue or modify such a permit, which shall contain a schedule of compliance for the publicly owned treatment works based on the earliest date by which such financial assistance will be available from the United States and construction can be completed, but in no event later than July 1, 1988, and shall contain such other terms and conditions, including those necessary to carry out subsections (b) through (g) of section 201 of this Act, section 307 of this Act, and such interim effluent limitations applicable to that treatment works as the Administrator determines are necessary to carry out the provisions of this Act. [301(i)(1) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [743] "[EDITOR'S NOTE:  Section 304(b) of PL 100-4 states the amendment to 301(i)(1), \"shall not apply to those treatment works which are subject to a compliance schedule established before the date of the enactment of this Act by a court order or a final administrative order.\"]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [744] "   (2)(A) Where a point source (other than a publicly owned treatment works) will not achieve the requirements of subsections (b)(1)(A) and (b)(1)(C) of this section and-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [745] "   (i) if a permit issued prior to July 1, 1977, to such point source is based upon a discharge into a publicly owned treatment works; or "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [746] "   (ii) if such point source (other than a publicly owned treatment works) had before July 1, 1977, a contract (enforceable against such point source) to discharge into a publicly owned treatment works; or "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [747] "   (iii) if either an application made before July 1, 1977, for a construction grant under this Act for a publicly owned treatment works, or engineering or architectural plans or working drawings made before July 1, 1977, for a publicly owned treatment works, show that such point source was to discharge into such publicly owned treatment works, and such publicly owned treatment works is presently unable to accept such discharge without construct ion, and in the case of a discharge to an existing publicly owned treatment works, such treatment works has an extension pursuant to paragraph (1) of this subsection, the owner or operator of such point source may request the Administrator (or if appropriate the State) to issue or modify such a permit pursuant to such section 402 to extend such time for compliance. Any such request shall be filed with the Administrator (or if appropriate the State) within 180 days after the date of enactment of this subsection or the filing of a request by the appropriate publicly owned treatment works under paragraph (1) of this subsection, whichever is later. If the Administrator (or if appropriate the State) finds that the owner or operator of such point source has acted in good faith, he may grant such request and issue or modify such a permit, which shall contain a schedule of compliance for the point source to achieve the requirements of subsections (b)(1)(A) and (C) of this section and shall contain such other terms and conditions, including pretreatment and interim effluent limitations and water conservation requirements applicable to that point source, as the Administrator determines are necessary to carry out the provisions of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [748] "   (B) No time modification granted by the Administrator (or if appropriate the State) pursuant to paragraph (2)(A) of this subsection shall extend beyond the earliest date practicable for compliance or beyond the date of any extension granted to the appropriate publicly owned treatment works pursuant to paragraph (1) of this subsection, but in no event shall it extend beyond July 1, 1988; and no such time modification shall be granted unless (i) the publicly owned treatment works will be in operation and available to the point source before July 1, 1988, and will meet the requirements to subsections (b)(1)(B) and (C) of this section after receiving the discharge from that point source; and (ii) the point source and the publicly owned treatment works have entered into an enforceable contract requiring the point source to discharge into the publicly owned treatment works, the owner or operator of such point source to pay the costs required under section 204 of this Act, and the publicly owned treatment works to accept the discharge from the point source; and (iii) the permit for such point source requires point source to meet all requirements under section 307(a) and (b) during the period of such time modification. [301(i) amended by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [749] "  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [750] "   (j)(1) Any application filed under this section for a modification of the provisions of-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [751] "   (A) subsection (b)(1)(B) under subsection (h) of this section shall be filed not later that[n] the 365th day which begins after the date of enactment of the Municipal Wastewater Treatment Construction Grant Amendments of 1981, except that a publicly owned treatment works which prior to December 31, 1982, had a contractual arrangement to use a portion of the capacity of an ocean outfall operated by another publicly owned treatment works which has applied for or received modification under subsection (h), may apply for a modification of subsection (h) in its own right not later than 30 days after the date of the enactment of the Water Quality Act of 1987; [301(j)(1)(A) revised by PL 97-117; amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [752] "   (B) Subsection (b)(2)(A) as it applies to pollutants identified in subsection (b)(2)(F) shall be filed not later than 270 days after the date of promulgation of an applicable effluent guideline under section 304 or not later than 270 days after the date of enactment of the Clean Water Act of 1977, whichever is later. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [753] "   (2) Subject to paragraph (3) of this section, any application for a modification filed under subsection (g) of this section shall not operate to stay any requirement under this Act, unless in the judgment of the Administrator such a stay or the modification sought will not result in the discharge of pollutants in quantities which may reasonably be anticipated to pose an unacceptable risk to human health or the environment because of bioaccumulation, persistency in the environment, acute toxicity, chronic toxicity (including carcinogenicity, mutagenicity or teratogenicity), or synergistic propensities, and that there is a substantial likelihood that the applicant will succeed on the merits of such application. In the case of an application filed under subsection (g) of this section, the Administrator may condition any stay granted under this paragraph on requiring the filing of a bond or other appropriate security to assure timely compliance with the requirements from which a modification is sought. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [754] "   (3) Compliance Requirements Under Subsection (g).-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [755] "   (A) Effect of Filing. -- An application for a modification under subsection (g) and a petition for listing of a pollutant as a pollutant for which modifications are authorized under such subsection shall not stay the requirement that the person seeking such modification or listing comply with effluent limitations under this Act for all pollutants not the subject of such application or petition. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [756] "   (B) Effect of Disapproval. -- Disapproval of an application for a modification under subsection (g) shall not stay the requirement that the person seeking such modification comply with all applicable effluent limitations under this Act. [301(j)(3) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [757] "   (4) Deadline for Subsection (g) Decision. -- An application for a modification with respect to a pollutant filed under subsection (g) must be approved or disapproved not later than 365 days after the date of such filing; except that in any case in which a petition for listing such pollutant as a pollutant for which modifications are authorized under such subsection is approved, such application must be approved or disapproved not later than 365 days after the date of approval of such petition. [301(j)(4) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [758] "   (k) In the case of any facility subject to a permit under section 402 which proposes to comply with the requirements of subsection (b)(2)(A) or (b)(2)(E) of this section by replacing existing production capacity with an innovative production process which will result in an effluent reduction significantly greater than that required by the limitation otherwise applicable to such facility and moves toward the national goal of eliminating the discharge of all pollutants, or with the installation of an innovative control technique that has a substantial likelihood for enabling the facility to comply with the applicable effluent limitation by achieving a significantly greater effluent reduction than that required by the applicable effluent limitation and moves toward the national goal of eliminating the discharge of all pollutants, or by achieving the required reduction with an innovative system that has the potential for significantly lower costs than the systems which have been determined by the Administrator to be economically achievable, the Administrator (or the State with an approved program under section 402, in consultation with the Administrator) may establish a date for compliance under subsection (b)(2)(A) or (b)(2)(E) of this section no later than two years after the date for compliance with such effluent limitation which would otherwise be applicable under such subsection, if it is also determined that such innovative system has the potential for industrywide application. [301(k) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [759] "   (l) Other than as provided in subsection (n) of this section, the Administrator may not modify any requirement of this section as it applies to any specific pollutant which is on the toxic pollutant list under section 307(a)(1) of this Act. [301(l) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [760] "   (m)(1) The Administrator, with the concurrence of the State, may issue a permit under section 402 which modifies the requirements of subsections (b)(1)(A) and (b)(2)(E) of this section, and of section 403, with respect to effluent limitations to the extent such limitations relate to biochemical oxygen demand and pH from discharges by an industrial discharger in such State into deep waters of the territorial seas, if the applicant demonstrates and the Administrator finds that-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [761] "   (A) the facility for with modification is sought is covered at the time of the enactment of this subsection by National Pollutant Discharge Elimination System permit number CA0005894 or CA0005282; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [762] "   (B) the energy and environmental costs of meeting such requirements of subsections (b)(1)(A) and (b)(2)(E) and section 403 exceed by an unreasonable amount the benefits to be obtained, including the objectives of this Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [763] "   (C) the applicant has established a system for monitoring the impact of such discharges on a representative sample of aquatic biota; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [764] "   (D) such modified requirements will not result in any additional requirements on any other point or nonpoint source; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [765] "   (E) there will be no new or substantially increased discharges from the point source of the pollutant to which the modification applies above that volume of discharge specified in the permit; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [766] "   (F) the discharge is into waters where there is strong tidal movement and other hydrological and geological characteristics which are necessary to allow compliance with this subsection and section 101(a)(2) of this Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [767] "   (G) the applicant accepts as a condition to the permit a contractural obligation to use funds in the amount required (but not less than $250,000 per year for ten years) for research and development of water pollution control technology, including but not limited to closed cycle technology; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [768] "   (H) the facts and circumstances present a unique situation which, if relief is granted, will not establish a precedent or the relaxation of the requirements of this Act applicable to similarly situated discharges; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [769] "   (I) no owner or operator of a facility comparable to that of the applicant situated in the United States has demonstrated that it would be put at a competitive disadvantage to the applicant (or the parent company or any subsidiary thereof) as a result of the issuance of a permit under this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [770] "   (2) The effluent limitations established under a permit issued under paragraph (1) shall be sufficient to implement the applicable State water quality standards, to assure the protection of public water supplies and protection and propagation of a balanced, indigenous population of shellfish, fish, fauna, wildlife, and other aquatic organisms, and to allow recreational activities in and on the water. In setting such limitations, the Administrator shall take into account any seasonal variations and the need for an adequate margin of safety, considering the lack of essential knowledge concerning the relationship between effluent limitations and water quality and the lack of essential knowledge of the effects of discharges on beneficial uses of the receiving waters. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [771] "   (3) A permit under this subsection may be issued for a period not to exceed five years, and such a permit may be renewed for one additional period not to exceed five years upon a demonstration by the applicant and a finding by the Administrator at the time of application for any such renewal that the provisions of this subsection are met. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [772] "   (4) The Administrator may terminate a permit issued under this subsection if the Administrator determines that there has been a decline in ambient water quality of the receiving waters during the period of the permit even if a direct cause and effect relationship cannot be shown: Provided, That if the effluent from a source with a permit issued under this subsection is contributing to a decline in ambient water quality of the receiving waters, the Administrator shall terminate such permit. [301(m) added by PL 97-440]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [773] "   (n) Fundamentally Different Factors.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [774] "   (1) General Rule. -- The Administrator, with the concurrence of the State, may establish an alternative requirement under subsection (b)(2) or section 307(b) for a facility that modifies the requirements of national effluent limitation guidelines or categorical pretreatment standards that would otherwise be applicable to such facility, if the owner or operator of such facility demonstrates to the satisfaction of the Administrator that-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [775] "   (A) the facility is fundamentally different with respect to the factors (other than cost) specified in section 304(b) or 304(g) and considered by the Administrator in establishing such national effluent limitation guidelines or categorical pretreatment standards; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [776] "   (B) the application-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [777] "   (i) is based solely on information and supporting data submitted to the Administrator during the rulemaking for establishment of the applicable national effluent limitation guidelines or categorical pretreatment standard specifically raising the factors that are fundamentally different for such facility; or "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [778] "   (ii) is based on information and supporting data referred to in clause (i) and information and supporting data the applicant did not have a reasonable opportunity to submit during such rulemaking; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [779] "   (C) the alternative requirement is no less stringent than justified by the fundamental difference: and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [780] "   (D) the alternative requirement will not result in a non-water quality environmental impact which is markedly more adverse than the impact considered by the Administrator in establishing such national effluent limitation guideline or categorical pretreatment standard. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [781] "   (2) Time Limit for Applications. -- An application for an alternative requirement which modifies the requirements of an effluent limitation or pretreatment standard under this subsection must be submitted to the Administrator within 180 days after the date on which such limitation or standard is established or revised, as the case may be. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [782] "   (3) Time Limit for Decision. -- The Administrator shall approve or deny by final agency action an application submitted under this subsection within 180 days after the date such application is filed with the Administrator. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [783] "   (4) Submission of Information. -- The Administrator may allow an applicant under this subsection to submit information and supporting data until the earlier of the date the application is approved or denied or the last day that the Administrator has to approve or deny such application. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [784] "   (5) Treatment of Pending Applications. --For the purposes of this subsection, an application for an alternative requirement based on fundamentally different factors which is pending on the date of the enactment of this subsection shall be treated as having been submitted to the Administrator on the 180th day following such date of enactment. The applicant may amend the application to take into account the provisions of this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [785] "   (6) Effect of Submission of Application. -- An application for an alternative requirement under this subsection shall not stay the applicant's obligation to comply with the effluent limitation guideline or categorical pretreatment standard which is the subject of the application. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [786] "   (7) Effect of Denial. -- If an application for an alternative requirement which modifies the requirements of an effluent limitation or pretreatment standard under this subsection is denied by the Administrator, the applicant must comply with such limitation or standard as established or revised, as the case may be. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [787] "   (8) Reports. -- Every 6 months after the date of the enactment of this subsection, the Administrator shall submit to the Committee on Environment and Public Works of the Senate and the Committee on Public Works and Transportation of the House of Representatives a report on the status of applications for alternative requirements which modify the requirements of effluent limitations under section 301 or 304 of this Act or any national categorical pretreatment standard under section 307(b) of this Act filed before, on, or after such date of enactment. [301(n) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [788] "   (o) Application Fees. -- The Administrator shall prescribe and collect from each applicant fees reflecting the reasonable administrative costs incurred in reviewing and processing applications for modifications submitted to the Administrator pursuant to subsections (c), (g), (i), (k), (m), and (n) of section 301, section 304(d)(4), and section 316(a) of this Act. All amounts collected by the Administrator under this subsection shall be deposited into a special fund of the Treasury entitled \"Water Permits and Related Services\" which shall thereafter be available for appropriation to carry out activities of the Environmental Protection Agency for which such fees were collected. [301(o) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [789] "  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [790] "   (p) Modified Permit for Coal Refining Operations.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [791] "   (1) In General. -- Subject to paragraphs (2) through (4) of this subsection, the Administrator, or the State in any case which the State has an approved permit pro gram under section 402(b), may issue a permit under section 402 which modifies the requirements of subsection (b)(2)(A) of this section with respect to the pH level of any pre-existing discharge, and with respect to preexisting discharges of iron and manganese from the remined area of any coal remining operation or with respect to the pH level or level of iron or manganese in any pre-existing discharge affected by the remining operation. Such modified requirements shall apply the best available technology economically achievable on a case-by-case basis, using best professional judgment, to set specific numerical effluent limitations in each permit. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [792] "   (2) Limitations. -- The Administrator or the State may only issue a permit pursuant to paragraph (l) if the applicant demonstrates to the satisfaction of the Administrator or the State, as the case may be, that the coal remining operation will result in the potential for improved water quality from the remining operation but in no event shall such a permit allow the pH level of any discharge, and in no event shall such a permit allow the discharges of iron and manganese, to exceed the levels being discharged from the remined area before the coal remining operation begins. No discharge from, or affected by, the remining operation shall exceed State water quality standards established under section 303 of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [793] "   (3) Definitions. -- For purposes of this subsection-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [794] "   (A) Coal Remining Operation. -- The term \"coal remining operation\" means a coal mining operation which begins after the date of the enactment of this subsection at a site on which coal mining was conducted before the effective date of the Surface Mining Control and Reclamation Act of 1977, "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [795] "   (B) Remined Area. -- The term \"remined area\" means only that area of any coal remining operation on which coal mining was conducted before the effective date of the Surface Mining Control and Reclamation Act of 1977, "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [796] "   (C) Pre-existing Discharge. -- The term \"pre-existing discharge\" means any discharge at the time of permit application under this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [797] "   (4) Applicability of Strip Mining Laws. --Nothing in this subsection shall affect the application of the Surface Mining Control and Reclamation Act of 1977 to any coal remining operation, including the application of such Act to suspended solids. [301(p) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [798] "  SEC. 302 [33 U.S.C. 1312] Water Quality Related Effluent Limitations "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [799] "   (a) Whenever, in the judgment of the Administrator or as identified under section 304(1) discharges of pollutants from a point source or group of point sources, with the application of effluent limitations required under section 301 (b)(2) of this Act, would interfere with the attainment or maintenance of that water quality in a specific portion of the navigable waters which shall assure protection of public health, public water supplies, agricultural and industrial uses, and the protection and propagation of a balanced population of shellfish, fish and wildlife, and allow recreational activities in and on the water, effluent limitations (including alternative effluent control strategies) for such point source or sources shall be established which can reasonably be expected to contribute to the attainment or maintenance of such water quality. [302(a) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [800] "   (b) Modifications of Effluent Limitations.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [801] "   (1) Notice and Hearing. -- Prior to establishment of any effluent limitation pursuant to subsection (a) of this section, the Administrator shall publish such proposed limitation and within 90 days of such publication hold a public hearing. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [802] "   (2) Permits.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [803] "   (A) No Reasonable Relationship. -- The Administrator, with the concurrence of the State, may issue a permit which modifies the effluent limitations required by subsection (a) of this section for pollutants other than toxic pollutants if the applicant demonstrates at such hearing that (whether or not technology or other alternative control strategies are available) there is no reasonable relationship between the economic and social costs and the benefits to be obtained (including attainment of the objective of this Act) from achieving such limitation. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [804] "   (B) Reasonable Progress. -- The Administrator, with the concurrence of the State, may issue a permit which modifies the effluent limitations required by subsection (a) of this section for toxic pollutants for a single period not to exceed 5 years if the applicant demonstrates to the satisfaction of the Administrator that such modified requirements (i) will represent the maximum degree of control within the economic capability of the owner and operator of the source, and (ii) will result in reasonable further progress beyond the requirements of section 301(b)(2) toward the requirements of subsection (a) of this section. [302(b) revised by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [805] "   (c) The establishment of effluent limitations under this section shall not operate to delay the application of any effluent limitation established under section 301 of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [806] "  SEC. 303 [33 U.S.C. 1313] Water Quality Standards and Implementation Plans "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [807] "   (a)(1) In order to carry out the purpose of this Act, any water quality standard applicable to interstate waters which was adopted by any State and submitted to, and approved by, or is awaiting approval by, the Administrator pursuant to this Act as in effect immediately prior to the date of enactment of the Federal Water Pollution Control Act Amendments of 1972, shall remain in effect unless the Administrator determined that such standard is not consistent with the applicable requirements of this Act as in effect immediately prior to the date of enactment of the Federal Water Pollution Control Act Amendments of 1972. If the Administrator makes such a determination he shall, within three months after the date of enactment of the Federal Water Pollution Control Act Amendments of 1972, notify the State and specify the changes needed to meet such requirements. If such changes are not adopted by the State within ninety days after the date of such notification, the Administrator shall promulgate such changes in accordance with subsection (b) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [808] "   (2) Any State which, before the date of enactment of the Federal Water Pollution Control Act Amendments of 1972, has adopted pursuant to its own law, water quality standards applicable to intrastate waters shall submit such standards to the Administrator within thirty days after the date of enactment of the Federal Water Pollution Control Act Amendments of 1972. Each such standard shall remain in effect, in the same manner and to the same extent as any other water quality standard established under this Act unless the Administrator determines that such standard is inconsistent with the applicable requirements of this Act as in effect immediately prior to the date of enactment of the Federal Water Pollution Control Act Amendments of 1972. If the Administrator makes such a determination he shall not later than the one hundred and twentieth day after the date of submission of such standards, notify the State and specify the changes needed to meet such requirements. If such changes are not adopted by the State within ninety days after such notification, the Administrator shall promulgate such changed in accordance with subsection (b) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [809] "   (3)(A) Any State which prior to the date of enactment of the Federal Water Pollution Control Act Amendments of 1972 has not adopted pursuant to its own laws water quality standards applicable to intrastate waters shall, not later than one hundred and eighty days after the date of enactment of the Federal Water Pollution Control Act Amendments of 1972, adopt and submit such standards to the Administrator. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [810] "   (B) If the Administrator determines that any such standards are consistent with the applicable requirements of this Act as in effect immediately prior to the date of enactment of the Federal Water Pollution Control Act Amendments of 1972, he shall approve such standards. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [811] "   (C) If the Administrator determines that any such standards are not consistent with the applicable requirements of this Act as in effect immediately prior to the date of enactment of the Federal Water Pollution Control Act Amendments of 1972, he shall, not later than the ninetieth day after the date of submission of such standards, notify the State and specify the changes to meet such requirements. If such changes are not adopted by the State within ninety days after the date of notification, the Administrator shall promulgate such standards pursuant to subsection (b) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [812] "   (b)(1) The Administrator shall promptly prepare and publish proposed regulations setting forth water quality standards for a State in accordance with the applicable requirements of this Act as in effect immediately prior to the date of enactment of the Federal Water Pollution Control Act Amendments of 1972, if-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [813] "   (A) the State fails to submit water quality standards within the times prescribed in subsection (a) of this section, "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [814] "   (B) a water quality standard submitted by such State under subsection (a) of this section is determined by the Administrator not to be consistent with the applicable requirements of subsection (a) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [815] "   (2) The Administrator shall promulgate any water quality standard published in a proposed regulation not later than one hundred and ninety days after the date he publishes any such proposed standard, unless prior to such promulgation, such State has adopted a water quality standard which the Administrator determines to be in accordance with subsection (a) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [816] "   (c)(1) The Governor of a State or the State water pollution control agency of such State shall from time to time (but at least once each three year period beginning with the date of enactment of the Federal Water Pollution Control Act Amendments of 1972) hold public hearings for the purpose of reviewing applicable water quality standards and, as appropriate, modifying and adopting standards. Results of such review shall be made available to the Administrator. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [817] "   (2)(A) Whenever the State revises or adopts a new standard, such revised or new standard shall be submitted to the Administrator. Such revised or new water quality standard shall consist of the designated uses of the navigable waters involved and the water quality criteria for such waters based upon such uses. Such standards shall be such as to protect the public health or welfare, enhance the quality of water and serve the purposes of this Act. Such standards shall be established taking into consideration their use and value for public water supplies, propagation of fish and wildlife, recreational purposes, and agricultural, industrial, and other purposes, and also taking into consideration their use and value for navigation. [303(c)(2)(A) designated by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [818] "   (B) Whenever a State reviews water quality standards pursuant to paragraph (1) of this subsection, or revises or adopts new standards pursuant to this paragraph, such State shall adopt criteria for all toxic pollutants listed pursuant to section 307(a)(1) of this Act for which criteria have been published under section 304(a), the discharge or presence of which in the affected waters could reasonably be expected to interfere with those designated uses adopted by the State, as necessary to support such designated uses. Such criteria shall be specific numerical criteria for such toxic pollutants. Where such numerical criteria are not available, whenever a State reviews water quality standards pursuant to paragraph (1), or revises or adopts new standards pursuant to this paragraph, such State shall adopt criteria based on biological monitoring or assessment methods consistent with information published pursuant to section 304(a)(8). Nothing in this section shall be construed to limit or delay the use of effluent limitations or other permit conditions based on or involving biological monitoring or assessment methods or previously adopted numerical criteria. [303(c)(2)(B) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [819] "   (3) If the Administrator, within sixty days after the date of submission of the revised or new standard, determines that such standard meets the requirements of this Act, such standard shall thereafter be the water quality standard for the applicable waters of that State. If the Administrator determines that any such revised or new standard is not consistent with the applicable requirements of this Act, he shall not later than the ninetieth day after the date of submission of such standard notify the State and specify the changes to meet such requirements. If such changes are not adopted by the State within ninety days after the date of notification, the Administrator shall promulgate such standard pursuant to paragraph (4) of this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [820] "   (4) The Administrator shall promptly prepare and publish proposed regulations setting forth a revised or new water quality standard for the navigable waters involved-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [821] "   (A) if a revised or new water quality standard submitted by such State under paragraph (3) of this subsection for such waters is determined by the Administrator not to be consistent with the applicable requirements of this Act, or "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [822] "   (B) in any case where the Administrator determines that a revised or new standard is necessary to meet the requirements of this Act. The Administrator shall promulgate any revised or new standard under this paragraph not later than ninety days after he publishes such proposed standards, unless prior to such promulgation, such State has adopted a revised or new water quality standard which the Administrator determines to be in accordance with this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [823] "   (d)(1) (A) Each state shall identify those waters within its boundaries for which the effluent limitations required by section 301(b)(1)(A) and section 301(b)(1)(B) are not stringent enough to implement any water quality standard applicable to such waters. The State shall establish a priority ranking for such waters, taking into account the severity of the pollution and the uses to be made of such waters. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [824] "   (B) Each State shall identify those waters or parts thereof within its boundaries for which controls on thermal discharges under section 301 are not stringent enough to assure protection and propagation of a balanced indigenous population of shellfish, fish, and wildlife. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [825] "   (C) Each State shall establish for the waters identified in paragraph (1)(A) of this subsection, and in accordance with the priority ranking, the total maximum daily load, for those pollutants which the Administrator identifies under section 304(a)(2) as suitable for such calculation. Such load shall be established at a level necessary to implement the applicable water quality standards with seasonal variations and a margin of safety which takes into account any lack of knowledge concerning the relationship between effluent limitations and water quality. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [826] "   (D) Each State shall estimate for the waters identified in paragraph (1)(d) of this subsection the total maximum daily thermal load required to assure protection and propagation of a balanced, indigenous population of shellfish, fish and wildlife. Such estimates shall take into account the normal water temperatures, flow rates, seasonal variations, existing sources of heat input, and the dissipative capacity of the identified waters or parts thereof. Such estimates shall include a calculation of the maximum heat input that can be made into each such part and shall include a margin of safety which takes into account any lack of knowledge concerning the development of thermal water quality criteria for such protection and propagation in the identified waters or parts thereof. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [827] "   (2) Each State shall submit to the Administrator from time to time, with the first such submission not later than one hundred and eighty days after the date of publication of the first identification of pollutants under section 304(a)(2)(D), for his approval the waters identified and the loads established under paragraphs (1)(A), (1)(B), (1)(C), and (1)(D) of this subsection. The Administrator shall either approve or disapprove such identification and load not later than thirty days after the date of submission. If the Administrator approves such identification and load, such State shall incorporate them into its current plan under subsection (e) of this section. If the Administrator disapproves such identification and load, he shall not later than thirty days after the date of such disapproval identify such waters in such State and establish such loads for such waters as he determines necessary to implement the water quality standards applicable to such waters and upon such identification and establishment the State shall incorporate them into its current plan under subsection (e) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [828] "   (3) For the specific purpose of developing information, each State shall identify all waters within its boundaries which it has not identified under paragraph (1)(A) and (1)(B) of this subsection and estimate for such waters the total maximum daily load with seasonal variations and margins of safety, for those pollutants which the Administrator identifies under section 304(a)(2) as suitable for such calculation and for thermal discharges, at a level that would assure protection and propagation of a balanced indigenous population of fish, shellfish and wildlife. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [829] "   (4) Limitations on Revision of Certain Effluent Limitations.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [830] "   (A) Standard Not Attained. -- For waters identified under paragraph (1)(A) where the applicable water quality standard has not yet been attained, any effluent limitation based on a total maximum daily load or other waste load allocation established under this section may be revised only if (i) the cumulative effect of all such revised effluent limitations based on such total maximum daily load or waste load allocation will assure the attainment of such water quality standard, or (ii) the designated use which is not being attained is removed in accordance with regulations established under this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [831] "   (B) Standard Attained. -- For waters identified under paragraph (1)(A) where the quality of such waters equals or exceeds levels necessary to protect the designated use for such waters or otherwise required by applicable water quality standards, any effluent limitation based on a total maximum daily load or other waste load allocation established under this section, or any water quality standard established under this section, or any other permitting standard may be revised only if such revision is subject to and consistent with the antidegradation policy established under this section. [303(d)(4) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [832] "  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [833] "   (e)(1) Each State shall have a continuing planning process approved under paragraph (2) of this subsection which is consistent with this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [834] "   (2) Each State shall submit not later than 120 days after the date of the enactment of the Water Pollution Control Amendments of 1972 to the Administrator for his approval a proposed continuing planning process which is consistent with this Act. Not later than thirty days after the date of submission of such a process the Administrator shall either approve or disapprove such process. The Administrator shall from time to time review each State's approved planning process for the purpose of insuring that such planning process is at all times consistent with this Act. The Administrator shall not approve any State permit program under title IV of this Act for any State which does not have an approved continuing planning process under this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [835] "   (3) The Administrator shall approve any continuing planning process submitted to him under this section which will result in plans for all navigable waters within such State, which include, but are not limited to, the following: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [836] "   (A) effluent limitations and schedules of compliance at least as stringent as those required by section 301(b)(1), section 301(b)(2), section 306, and section 307, and at least as stringent as any requirements contained in any applicable water quality standard in effect under authority of this section; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [837] "   (B) the incorporation of all elements of any applicable areawide waste management plans under section 208, and applicable basin plans under section 209 of this Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [838] "   (C) total maximum daily load for pollutants in accordance with subsection (d) of this section; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [839] "   (D) procedures for revision; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [840] "   (E) adequate authority for intergovernmental cooperation; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [841] "   (F) adequate implementation, including schedules of compliance, for revised or new water quality standards, under subsection (c) of this section; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [842] "   (G) controls over the disposition of all residual waste from any water treatment processing; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [843] "   (H) an inventory and ranking, in order of priority, of needs for construction of waste treatment works required to meet the applicable requirements of sections 301 and 302. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [844] "   (f) Nothing in this section shall be construed to affect any effluent limitation, or schedule of compliance required by any State to be implemented prior to the dates set forth in sections 301(b)(1) and 301(b)(2) nor to preclude any State from requiring compliance with any effluent limitation or schedule of compliance at dates earlier than such dates. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [845] "   (g) Water quality standards relating to heat shall be consistent with the requirements of section 316 of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [846] "   (h) For the purposes of this Act the term \"water quality standards\" includes thermal water quality standards. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [847] "  SEC. 304 [33 U.S.C. 1314] Information and Guidelines "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [848] "   (a)(1) The Administrator, after consultation with appropriate Federal and State agencies and other interested persons, shall develop and publish, within one year after the date of enactment of this title (and from time to time thereafter revise) criteria for water quality accurately reflecting the latest scientific knowledge (A) on the kind and extent of all identifiable effects on health and welfare including, but not limited to, plankton, fish, shellfish, wildlife, plant life, shore lines, beaches, esthetics, and recreation which may be expected from the presence of pollutants in any body of water, including ground water; (B) on the concentration and dispersal of pollutants, or their byproducts, through biological, physical, and chemical processes; and (C) on the effects of pollutants on biological community diversity, productivity, and stability, including information on the factors affecting rates of eutrophication and rates of organic and inorganic sedimentation for varying types of receiving waters. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [849] "   (2) The Administrator, after consultation with appropriate Federal and State agencies and other interested persons, shall develop and publish, within one year after the date of enactment of this title (and from time to time thereafter revise) information (A) on the factors necessary to restore and maintain the chemical, physical, and biological integrity of all navigable waters, ground waters, waters of the contiguous zone, and the oceans; (B) on the factors necessary for the protection and propagation of shellfish, fish, and wildlife for classes and categories of receiving waters and to allow recreational activities in and on the water; and (C) on the measurement and classification of water quality; and (D) for the purpose of section 303, on and the identification of pollutants suitable for maximum daily load measurement correlated with the achievement of water quality objectives. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [850] "   (3) Such criteria and information and revisions thereof shall be issued to the States and shall be published in the Federal Register and otherwise made available to the public. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [851] "   (4) The Administrator shall, within 90 days after the date of enactment of the Clean Water Act of 1977 and from time to time thereafter, publish and revise as appropriate information identifying conventional pollutants, including but not limited to, pollutants classified as biological oxygen demanding, suspended solids, fecal coliform, and pH. The thermal component of any discharge shall not be identified as a conventional pollutant under this paragraph. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [852] "   (5)(A) The Administrator, to the extent practicable before consideration of any request under section 301(g) of this Act and within six months after the date of enactment of the Clean Water Act of 1977, shall develop and publish information on the factors necessary for the protection of public water supplies, and the protection and propagation of a balanced population of shellfish, fish and wildlife, and to allow recreational activities, in and on the water. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [853] "   (B) The Administrator, to the extent practicable before consideration of any application under section 301(h) of this Act and within six months after the date of enactment of the Clean Water Act of 1977, shall develop and publish information on the factors necessary for the protection of public water supplies, and the protection and propagation of a balanced indigenous population of shellfish, fish and wildlife, and to allow recreational activities, in and on the water. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [854] "   (6) The Administrator shall, within three months after enactment of the Clean Water Act of 1977 and annually thereafter, for purposes of section 301(h) of this Act publish and revise as appropriate information identifying each water quality standard in effect under this Act of State law, the specific pollutants associated with such water quality standard, and the particular waters to which such water quality standard applies. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [855] "   (7) Guidance to States. -- The Administrator, after consultation with appropriate State agencies and on the basis of criteria and information published under paragraphs (1) and (2) of this subsection, shall develop and publish, within 9 months after the date of the enactment of the Water Quality Act of 1987, guidance to the States on performing the identification required by section 304(1)(l) of this Act. [304(a)(7) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [856] "   (8) Information on Water Quality Criteria. -- The Administrator, after consultation with appropriate State agencies and within 2 years after the date of the enactment of the Water Quality Act of 1987, shall develop and publish information on methods for establishing and measuring water quality criteria for toxic pollutants on other bases than pollutant-by-pollutant criteria, including biological monitoring and assessment methods. [304(a)(8) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [857] "   (b) For the purpose of adopting or revising effluent limitations under this Act the Administrator shall, after consultation with appropriate Federal and State agencies and other interested persons, publish within one year of enactment of this title, regulations, providing guidelines for effluent limitations, and, at least annually thereafter, revise, if appropriate, such regulations. Such regulations shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [858] "   (1)(A) identify, in terms of amounts of constituents and chemical, physical, and biological characteristics of pollutants, the degree of effluent reduction attainable through the application of the best practicable control technology currently available for classes and categories of point sources (other than publicly owned treatment works); and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [859] "   (B) specify factors to be taken into account in determining the control measures and practices to be applicable to point sources (other than publicly owned treatment works) within such categories or classes. Factors relating to the assessment of best practicable control technology currently available to comply with subsection (b)(1) of section 301 of this Act shall include consideration of the total cost of application of technology in relation to the effluent reduction benefits to be achieved from such application, and shall also take into account the age of equipment and facilities involved, the process employed, the engineering aspects of the application of various types of control techniques, process changes, non-water quality environmental impact (including energy requirements), and such other factors as the Administrator deems appropriate; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [860] "   (2)(A) identify, in terms of amounts of constituents and chemical, physical, and biological characteristics of pollutants, the degree of effluent reduction attainable through the application of the best control measures and practices achievable including treatment techniques, process and procedure innovations, operating methods, and other alternatives for classes and categories of point sources (other than publicly owned treatment works); and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [861] "   (B) specify factors to be taken into account in determining the best measures and practices available to comply with subsection (b)(2) of section 301 of this Act to be applicable to any point source (other than publicly owned treatment works) within such categories of classes. Factors relating to the assessment of best available technology shall take into account the age of equipment and facilities involved, the process employed, the engineering aspects of the application of various types of control techniques, process changes, the cost of achieving such effluent reduction, non-water quality environmental impact (including energy requirements), and such other factors as the Administrator deems appropriate; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [862] "   (3) identify control measures and practices available to eliminate the discharge of pollutants from categories and classes of point sources, taking into account the cost of achieving such elimination of the discharge of pollutants; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [863] "   (4)(A) identify, in terms of amounts of constituents and chemical, physical, and biological characteristics of pollutants, the degree of effluent reduction attainable through the application of the best conventional pollutant control technology (including measures and practices) for classes and categories of point sources (other than publicly owned treatment works); and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [864] "   (B) specify factors to be taken into account in determining the best conventional pollutant control technology measures and practices to comply with section 301(b)(2)(E) of this Act to be applicable to any point source (other than publicly owned treatment works) within such categories or classes. Factors relating to the assessment of best conventional pollutant control technology (including measures and practices) shall include consideration of the reasonableness of the relationship between the costs of attaining a reduction in effluents and the effluent reduction benefits derived, and the comparison of the cost and level of reduction of such pollutants from the discharge from publicly owned treatment works to the cost and level of reduction of such pollutants from a class or category of industrial sources, and shall take into account the age of equipment and facilities involved, the process employed, the engineering aspects of the application of various types of control techniques, process changes, non-water quality environmental impact (including energy requirements), and such other factors as the Administrator deems appropriate. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [865] "   (c) The Administrator, after consultation, with appropriate Federal and State agencies and other interested persons, shall issue to the States and appropriate water pollution control agencies within 270 days after enactment of this title (and from time to time thereafter) information on the processes, procedures, or operating methods which result in the elimination or reduction of the discharge of pollutants to implement standards of performance under section 306 of this Act. Such information shall include technical and other data, including costs, as are available on alternative methods of elimination or reduction of the discharge of pollutants. Such information, and revisions thereof, shall be published in the Federal Register and otherwise shall be made available to the public. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [866] "   (d)(1) The Administrator, after consultation with appropriate Federal and State agencies and other interested persons, shall publish within sixty days after enactment of this title (and from time to time thereafter) information, in terms of amounts of constituents and chemical, physical, and biological characteristics of pollutants, on the degree of effluent reduction attainable through the application of secondary treatment. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [867] "   (2) The Administrator, after consultation with appropriate Federal and State agencies and other interested persons, shall publish within nine months after the date of enactment of this title (and from time to time thereafter) information on alternative waste treatment management techniques and systems available to implement section 201 of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [868] "   (3) The Administrator, after consultation with appropriate Federal and State agencies and other interested persons, shall promulgate within one hundred and eighty days after the date of enactment of this subsection guidelines for identifying and evaluating innovative and alternative wastewater treatment processes and techniques referred to in section 201(g)(5) of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [869] "   (4) For the purposes of this subsection, such biological treatment facilities as oxidation ponds, lagoons, and ditches and trickling filters shall be deemed the equivalent of secondary treatment. The Administrator shall provide guidance under paragraph (1) of this subsection on design criteria for such facilities, taking into account pollutant removal efficiencies and, consistent with the objective of the Act, assuring that water quality will not be adversely affected by deeming such facilities as the equivalent of secondary treatment. [304(d)(4) added by PL 97-117]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [870] "   (e) The Administrator, after consultation with appropriate Federal and State agencies and other interested persons, may publish regulations, supplemental to any effluent limitations specified under subsections (b) and (c) of this section for a class or category of point sources, for any specific pollutant which the Administrator is charged with a duty to regulate as a toxic or hazardous pollutant under section 307(a)(1) or 311 of this Act, to control plant site runoff, spillage or leaks, sludge or waste disposal, and drainage from raw material storage which the Administrator determines are associated with or ancillary to the industrial manufacturing or treatment process within such class or category of point sources and may contribute significant amounts of such pollutants to navigable waters. Any applicable controls established under this subsection shall be included as a requirement for the purposes of section 301, 302, 306, 307, or 403, as the case may be, in any permit issued to a point source pursuant to section 402 of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [871] "  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [872] "   (f) The Administrator, after consultation with appropriate Federal and State agencies and other interested persons, shall issue to appropriate Federal agencies, the States, water pollution control agencies, and agencies designated under section 208 of this Act, within one year after the effective date of this subsection (and from time to time thereafter) information including (1) guidelines for identifying and evaluating the nature and extent of nonpoint sources of pollutants, and (2) processes, procedures, and methods to control pollution resulting from-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [873] "   (A) agricultural and silvicultural activities, including runoff from fields and crop and forest lands; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [874] "   (B) mining activities, including runoff and siltation from new, currently operating, and abandoned surface and underground mines; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [875] "   (C) all construction activity, including runoff from the facilities resulting from such construction; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [876] "   (D) the disposal of pollutants in wells or in subsurface excavations; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [877] "   (E) salt water intrusion resulting from reductions of fresh water flow from any cause, including extraction of ground water, irrigation, obstruction, and diversion; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [878] "   (F) changes in the movement, flow, or circulation of any navigable waters or ground waters, including changes caused by the construction of dams, levees, channels, causeways, or flow diversion facilities. Such information and revisions thereof shall be published in the Federal Register and otherwise made available to the public. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [879] "   (g)(1) For the purpose of assisting States in carrying out programs under section 402 of this Act, the Administrator shall publish, within one hundred and twenty days after the date of enactment of this title, and review at least annually thereafter and, if appropriate, revise guidelines for pretreatment of pollutants which he determines are not susceptible to treatment by publicly owned treatment works. Guidelines under this subsection shall be established to control and prevent the discharge into the navigable waters, the contiguous zone, or the ocean (either directly or through publicly owned treatment works) of any pollutant which interferes with, passes through, or otherwise is incompatible with such works. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [880] "   (2) When publishing guidelines under this subsection, the Administrator shall designate the category or categories of treatment works to which the guidelines shall apply. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [881] "   (h) The Administrator shall, within one hundred and eighty days from the date of enactment of this title, promulgate guidelines establishing test procedures for the analysis of pollutants that shall include the factors which must be provided in any certification pursuant to section 401 of this Act or permit application pursuant to section 402 of this Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [882] "   (i) The Administrator shall (1) within sixty days after the enactment of this title promulgate guidelines for the purpose of establishing uniform application forms and other minimum requirements for the acquisition of information from owners and operators of point-sources of discharge subject to any State program under section 402 of this Act, and (2) within sixty days from the date of enactment of this title promulgate guidelines establishing the minimum procedural and other elements of any State program under section 402 of this Act which shall include: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [883] "   (A) monitoring requirements; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [884] "   (B) reporting requirements (including procedures to make information available to the public); "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [885] "   (C) enforcement provisions; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [886] "   (D) funding, personnel qualifications, and manpower requirements (including a requirement that no board or body which approves permit applications or portions thereof shall include, as a member, any person who receives, or has during the previous two years received, a significant portion of his income directly or indirectly from permit holders or applicants for a permit). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [887] "   (j) Lake Restoration Guidance Manual --The Administrator shall, within 1 year after the date of the enactment of the Water Quality Act of 1987 and biennially thereafter, publish and disseminate a lake restoration guidance manual describing methods, procedures, and processes to guide State and local efforts to improve, restore, and enhance water quality in the Nation's publicly owned lakes. [304(j) revised by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [888] "   (k)(1) The Administrator shall enter into agreements with the Secretary of Agriculture, the Secretary of the Army, and the Secretary of the Interior, and the heads of such other departments, agencies, and instrumentalities of the United States as the Administrator determines, to provide for the maximum utilization of other Federal laws and programs for the purpose of achieving and maintaining water quality through appropriate implementation of plans approved under section 208 of this Act and nonpoint source pollution management programs approved under section 319 of this Act. [304(k)(1) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [889] "   (2) The Administrator is authorized to transfer to the Secretary of Agriculture, the Secretary of the Army, and the Secretary of the Interior and the heads of such other departments, agencies, and instrumentalities of the United States as the Administrator determines, any funds appropriated under paragraph (3) of this subsection to supplement funds otherwise appropriated to programs authorized pursuant to any agreement under paragraph (1). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [890] "   (3) There is authorized to be appropriated to carry out the provisions of this subsection, $100,000,000 per fiscal year for the fiscal years 1979 through 1983 and such sums as may be necessary for fiscal years 1984 through 1990. [304(k)(3) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [891] "   (l) Individual Control Strategies for Toxic Pollutants.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [892] "   (1) State List of Navigable Waters and Development of Strategies. -- Not later than 2 years after the date of the enactment of this subsection, each State shall submit to the Administrator for review, approval, and implementation under this subsection-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [893] "   (A) a list of those waters within the State which after the application of effluent limitations required under section 301(b)(2) of this Act cannot reasonably be anticipated to attain or maintain (i) water quality standards for such waters reviewed, revised, or adopted in accordance with section 303(c)(2)(B) of this Act, due to toxic pollutants, or (ii) that water quality which shall assure protection of public health, public water supplies, agricultural and industrial uses, and the protection and propagation of a balanced population of shellfish, fish and wildlife, and allow recreational activities in and on the water; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [894] "   (B) a list of all navigable waters in such State for which the State does not expect the applicable standard under section 303 of this Act will be achieved after the requirements of sections 301(b), 306, and 307(b) are met, due entirely or substantially to discharges from point sources of any toxic pollutants listed pursuant to section 307(a); "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [895] "   (C) for each segment of the navigable waters included on such lists, a determination of the specific point sources discharging any such toxic pollutant which is believed to be preventing or impairing such water quality and the amount of each such toxic pollutant discharged by each such source; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [896] "   (D) for each such segment, an individual control strategy which the State determines will produce a reduction in the discharge of toxic pollutants from point sources identified by the State under this paragraph through the establishment of effluent limitations under section 402 of this Act and water quality standards under section 303(c)(2)(B) of this Act, which reduction is sufficient, in combination with existing controls on point and nonpoint sources of pollution, to achieve the applicable water quality standard as soon as possible, but not later than 3 years after the date of the establishment of such strategy. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [897] "   (2) Approval or Disapproval. -- Not later than 120 days after the last day of the 2-year period referred to in paragraph (1), the Administrator shall approve or disapprove the control strategies submitted under paragraph (1) by any State. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [898] "   (3) Administrator's Action. -- If a State fails to submit control strategies in accordance with paragraph (1) or the Administrator does not approve the control strategies submitted by such State in accordance with paragraph (1), then, not later than 1 year after the last day of the period referred to in paragraph (2), the Administrator, in cooperation with such State and after notice and opportunity for public comment, shall implement the requirements of paragraph (1) in such State. In the implementation of such requirements, the Administrator shall, at a minimum, consider for listing under this subsection any navigable waters for which any person submits a petition to the Administrator for listing not later than 120 days after such last day. [304(l) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [899] "   (m) Schedule for Review of Guidelines.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [900] "   (1) Publication. -- Within 12 months after the date of the enactment of the Water Quality Act of 1987, and biennially thereafter, the Administrator shall publish in the Federal Register a plan which shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [901] "   (A) establish a schedule for the annual review and revision of promulgated effluent guidelines, in accordance with subsection (b) of this section; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [902] "   (B) identify categories of sources discharging toxic or nonconventional pollutants for which guidelines under subsection (b)(2) of this section and section 306 have not previously been published; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [903] "   (C) establish a schedule for promulgation of effluent guidelines for categories identified in subparagraph (B), under which promulgation of such guidelines shall be no later than 4 years after such date of enactment for categories identified in the first published plan or 3 years after the publication of the plan for categories identified in later published plans. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [904] "   (2) Public Review. -- The Administrator shall provide for public review and comment on the plan prior to final publication. [304(m) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [905] "  SEC. 305 [33 U.S.C. 1315] Water Quality Inventory "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [906] "   (a) The Administrator, in cooperation with the States and with the assistance of appropriate Federal agencies shall prepare a report to be submitted to the Congress on or before January 1, 1974, which shall-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [907] "   (1) describe the specific quality, during 1973, with appropriate supplemental descriptions as shall be required to take into account seasonal, tidal, and other variations, of all navigable waters and the waters of the contiguous zone; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [908] "   (2) include an inventory of all point sources of discharge (based on a qualitative and quantitative analysis of discharges) of pollutants, into all navigable waters and the waters of the contiguous zone; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [909] "   (3) identify specifically those navigable waters, the quality of which-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [910] "   (A) is adequate to provide for the protection and propagation of a balanced population of shellfish, fish, and wildlife and allow recreational activities in and on the water; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [911] "   (B) can reasonably be expected to attain such level by 1977 or 1983; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [912] "   (C) can reasonably be expected to attain such level by any later date. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [913] "   (b)(1) Each State shall prepare and submit to the Administrator by April 1, 1975, and shall bring up to date by April 1, 1976, and biennially thereafter, a report which shall include-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [914] "   (A) a description of the water quality of all navigable waters in such State during the preceding year, with appropriate supplemental descriptions as shall be required to take into account seasonal, tidal, and other variations, correlated with the quality of water required by the objective of this Act (as identified by the Administrator pursuant to criteria published under section 304(a) of this Act) and the water quality described in subparagraph (B) of this paragraph; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [915] "   (B) an analysis of the extent to which all navigable waters of such State provide for the protection and propagation of a balanced population of shellfish, fish, and wildlife, and allow recreational activities in and on the water; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [916] "   (C) an analysis of the extent to which the elimination of the discharge of pollutants and a level of water quality which provides for the protection and propagation of a balanced population of shellfish, fish, and wildlife and allows recreational activities in and on the water, have been or will be achieved by the requirements of this Act, together with recommendations as to additional action necessary to achieve such objectives and for what waters such additional action is necessary; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [917] "   (D) an estimate of (i) the environmental impact, (ii) the economic and social costs necessary to achieve the objective of this Act in such State, (iii) the economic and social benefits of such achievement, and (iv) an estimate of the date of such achievement; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [918] "   (E) a description of the nature and extent of non-point sources of pollutants, and recommendations as to the programs which must be undertaken to control each category of such sources, including an estimate of the costs of implementing such programs. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [919] "   (2) The Administrator shall transmit such State reports, together with an analysis thereof, to Congress on or before October 1, 1975, and October 1, 1976, and biennially thereafter. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [920] "  SEC. 306 [33 U.S.C. 1316] National Standards of Performance "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [921] "   (a) For purposes of this section: "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [922] "   (1) The term \"standard of performance\" means a standard for the control of the discharge of pollutants which reflects the greatest degree of effluent reduction which the Administrator determines to be achievable through application of the best available demonstrated control technology, processes, operating methods, or other alternatives, including, where practicable, a standard permitting no discharge of pollutants. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [923] "   (2) The term \"new source\" means any source, the construction of which is commenced after the publication of proposed regulations prescribing a standard of performance under this section which will be applicable to such source, if such standard is thereafter promulgated in accordance with this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [924] "   (3) The term \"source\" means any building, structure, facility, or installation from which there is or may be the discharge of pollutants. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [925] "   (4) The term \"owner or operator\" means any person who owns, leases, operates, controls, or supervises a source. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [926] "   (5) The term \"construction\" means any placement, assembly, or installation of facilities or equipment (including contractual obligations to purchase such facilities or equipment) at the premises where such equipment will be used, including preparation work at such premises. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [927] "   (b)(1) (A) The Administrator shall, within ninety days after the date of enactment of this title publish (and from time to time thereafter shall revise) a list of categories of sources, which shall, at the minimum, include:     pulp and paper mills;    paperboard, builders paper and board mills;    meat product and rendering processing;    dairy product processing; grain mills;    canned and preserved fruits and vegetables processing;    canned and preserved seafood processing;    sugar processing;    textile mills;    cement manufacturing;    feedlots;    electroplating;    organic chemicals manufacturing;    inorganic chemicals manufacturing;    plastic and synthetic materials manufacturing;    soap and detergent manufacturing;    fertilizer manufacturing;    petroleum refining;    iron and steel manufacturing;    nonferrous metals manufacturing;    phosphate manufacturing;    steam electric powerplants;    ferroalloy manufacturing;    leather tanning and finishing;    glass and asbestos manufacturing;    rubber processing; and    timber products processing.  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [928] "   (B) As soon as practicable, but in no case more than one year, after a category of sources is included in a list under subparagraph (A) of this paragraph, the Administrator shall propose and publish regulations establishing Federal standards of performance for new sources within such category. The Administrator shall afford interested persons an opportunity for written comment on such proposed regulations. After considering such comments, he shall promulgate, within one hundred and twenty days after publication of such proposed regulations, such standards with such adjustments as he deems appropriate. The Administrator shall, from time to time, as technology and alternatives change, revise such standards following the procedure required by this subsection for promulgation of such standards. Standards of performance, or revisions thereof, shall become effective upon promulgation. In establishing or revising Federal standards of performance for new sources under this section, the Administrator shall take into consideration the cost of achieving such effluent reduction, and any non-water quality environmental impact and energy requirements. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [929] "   (2) The Administrator may distinguish among classes, types, and sizes within categories of new sources for the purpose of establishing such standards and shall consider the type of process employed (including whether batch or continuous). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [930] "   (3) The provisions of this section shall apply to any new source owned or operated by the United States. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [931] "   (c) Each State may develop and submit to the Administrator a procedure under State law for applying and enforcing standards of performance for new sources located in such State. If the Administrator finds that the procedure and the law of any State require the application and enforcement of standards of performance to at least the same extent as required by this section, such State is authorized to apply and enforce such standards of performance (except with respect to new sources owned or operated by the United States). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [932] "   (d) Notwithstanding any other provision of this Act, any point source the construction of which is commenced after the date of enactment of the Federal Water Pollution Control Act Amendments of 1972 and which is so constructed as to meet all applicable standards of performance shall not be subject to any more stringent standard of performance during a ten-year period beginning on the date of completion of such construction or during the period of depreciation or amortization of such facility for the purposes of section 167 or 169 (or both) of the Internal Revenue Code of 1954, whichever period ends first. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [933] "   (e) After the effective date of standards of performance promulgated under this section, it shall be unlawful for any owner or operator of any new source to operate such source in violation of any standard of performance applicable to such source. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [934] "  SEC. 307 [33 U.S.C. 1317] Toxic and Pretreatment Effluent Standards "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [935] "   (a)(1) On and after the date of enactment of the Clean Water Act of 1977, the list of toxic pollutants or combination of pollutants subject to this Act shall consist of those toxic pollutants listed in table 1 of Committee Print Numbered 95-30 of the Committee on Public Works and Transportation of the House of Representatives, and the Administrator shall publish, not later than the thirtieth day after date of enactment of the Clean Water Act of 1977, that list. From time to time thereafter, the Administrator may revise such list and the Administrator is authorized to add to or remove from such list any pollutant. The Administrator in publishing any revised list, including the addition or removal of any pollutant from such list, shall take into account the toxicity of the pollutant, its persistence, degradability, the usual or potential presence of the affected organisms in any waters, the importance of the affected organisms, and the nature and extent of the effect of the toxic pollutant on such organisms. A determination of the Administrator under this paragraph shall be final except that if, on judicial review, such determination was based on arbitrary and capricious action of the Administrator, the Administrator shall make a redetermination. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [936] "[EDITOR'S NOTE:  The current version of Table 1, as revised by the EPA, is published in Environment Reporter, Federal Regulations--6, p. 135:0501. See also the provisions of 519 of PL 100-4 published at the end of this Act.]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [937] "   (2) Each toxic pollutant listed in accordance with paragraph (1) of this subsection shall be subject to effluent limitations resulting from the application of the best available technology economically achievable for the applicable category or class of point sources established in accordance with section 301(b)(2)(A) and 304(b)(2) of this Act. The Administrator, in his discretion, may publish in the Federal Register a proposed effluent standard (which may include a prohibition) establishing requirements for a toxic pollutant which, if an effluent limitation is applicable to a class or category of point sources, shall be applicable to such category or class only if such standard imposes more stringent requirements. Such published effluent standard (or prohibition) shall take into account the toxicity of the pollutant, its persistence, degradability, the usual or potential presence of the affected organisms in any waters, the importance of the affected organisms and the nature and extent of the effect of the toxic pollutant on such organisms, and the extent to which effective control is being or may be achieved under other regulatory authority. The Administrator shall allow a period of not less than sixty days following publication of any such proposed effluent standard (or prohibition) for written comment by interested persons on such proposed standard. In addition, if within thirty days of publication of any such proposed effluent standard (or prohibition) any interested person so requests, the Administrator shall hold a public hearing in connection therewith. Such a public hearing shall provide an opportunity for oral and written presentations, such cross-examination as the Administrator determines is appropriate on disputed issues of material fact, and the transcription of a verbatim record which shall be available to the public. After consideration of such comments and any information and material presented at any public hearing held on such proposed standard or prohibition, the Administrator shall promulgate such standards (or prohibition) with such modifications as the Administrator finds are justified. Such promulgation by the Administrator shall be made within two hundred and seventy days after publication of proposed standard (or prohibition). Such standard (or prohibition) shall be final except that if, on judicial review, such standard was not based on substantial evidence, the Administrator shall promulgate a revised standard. Effluent limitations shall be established in accordance with sections 301(b)(2)(A) and 304(b)(2) for every toxic pollutant referred to in table 1 of Committee Print Numbered 95-30 of the Committee on Public Works and Transportation of the House of Representatives as soon as practicable after the date of enactment of the Clean Water Act of 1977, but no later than July 1, 1980. Such effluent limitations or effluent standards (or prohibitions) shall be established for every other toxic pollutant listed under paragraph (1) of this subsection as soon as practicable after it is so listed. "
 [938] "   (3) Each such effluent standard (or prohibition) shall be reviewed and, if appropriate, revised at least every three years. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [939] "   (4) Any effluent standard promulgated under this section shall be at that level which the Administrator determines provides an ample margin of safety. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [940] "   (5) When proposing or promulgating any effluent standard (or prohibition) under this section, the Administrator shall designate the category or categories of sources to which the effluent standard (or prohibition) shall apply. Any disposal of dredged material may be included in such a category of sources after consultation with the Secretary of the Army. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [941] "   (6) Any effluent standard (or prohibition) established pursuant to this section shall take effect on such date or dates as specified in the order promulgating such standard, but in no case, more than one year from the date of such promulgation. If the Administrator determines that compliance within one year from the date of promulgation is technologically infeasible for a category of sources, the Administrator may establish the effective date of the effluent standard (or prohibition) for such category at the earliest date upon which compliance can be feasibly attained by sources within such category, but in no event more than three years after the date of such promulgation. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [942] "   (7) Prior to publishing any regulations pursuant to this section the Administrator shall, to the maximum extent practicable within the time provided, consult with appropriate advisory committees, States, independent experts, and Federal departments and agencies. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [943] "   (b)(1) The Administrator shall, within one hundred and eighty days after the date of enactment of this title and from time to time thereafter, publish proposed regulations establishing pretreatment standards for introduction of pollutants into treatment works (as defined in section 212 of this Act) which are publicly owned for those pollutants which are determined not to be susceptible to treatment by such treatment works or which would interfere with the operation of such treatment works. Not later than ninety days after such publication, and after opportunity for public hearing, the Administrator shall promulgate such pretreatment standards. Pretreatment standards under this subsection shall specify a time for compliance not to exceed three years from the date of promulgation and shall be established to prevent the discharge of any pollutant through treatment works (as defined in section 212 of this Act) which are publicly owned, which pollutant interferes with, passes through, or otherwise is incompatible with such works. If, in the case of any toxic pollutant under subsection (a) of this section introduced by a source into a publicly owned treatment works, the treatment by such works removes all or any part of such toxic pollutant and the discharge from such works does not violate that effluent limitation or standard which would be applicable to such toxic pollutant if it were discharged by such source other than through a publicly owned treatment works, and does not prevent sludge use or disposal by such works in accordance with section 405 of this Act, then the pretreatment requirements for the sources actually discharging such toxic pollutant into such publicly owned treatment works may be revised by the owner or operator of such works to reflect the removal of such toxic pollutant by such works. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [944] "   (2) The Administrator shall, from time to time, as control technology, processes, operating methods, or other alternative change, revise such standards following the procedure established by this subsection for promulgation of such standards. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [945] "   (3) When proposing or promulgating any pretreatment standard under this section, the Administrator shall designate the category or categories of sources to which such standard shall apply. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [946] "   (4) Nothing in this subsection shall affect any pretreatment requirement established by any State or local law not in conflict with any pretreatment standard established under this subsection. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [947] "   (c) In order to insure that any source introducing pollutants into a publicly owned treatment works, which source would be a new source subject to section 306 if it were to discharge pollutants, will not cause a violation of the effluent limitations established for any such treatment works, the Administrator shall promulgate pretreatment standards for the category of such sources simultaneously with the promulgation of standards of performance under section 306 for the equivalent category of new sources. Such pretreatment standards shall prevent the discharge of any pollutant into such treatment works, which pollutant may interfere with, pass through, or otherwise be incompatible with such works. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [948] "   (d) After the effective date of any effluent standard or prohibition or pretreatment standard promulgated under this section, it shall be unlawful for any owner or operator of any source to operate any source in violation of any such effluent standard or prohibition or pretreatment standard. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [949] "   (e) Compliance Date Extension for Innovative Pretreatment Systems. -- In the case of any existing facility that proposes to comply with the pretreatment standards of subsection (b) of this section by applying an innovative system that meets the requirements of section 301(k) of this Act, the owner or operator of the publicly owned treatment works receiving the treated effluent from such facility may extend the date for compliance with the applicable pretreatment standard established under this section for a period not to exceed 2 years-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [950] "   (1) if the Administrator determines that the innovative system has the potential for industrywide application, and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [951] "   (2) if the Administrator (or the State in consultation with the Administrator, in any case in which the State has a pretreatment program approved by the Administrator)-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
 [952] "   (A) determines that the proposed extension will not cause the publicly owned treatment works to be in violation of its permit under section 402 or of section 405 or to contribute to such a violation, and B concurs with the proposed extension. [307(e) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [953] "  SEC. 308 [33 U.S.C. 1318] Inspections, Monitoring and Entry "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [954] "   (a) Whenever required to carry out the objective of this Act, including but not limited to "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [955] "   (1) developing or assisting in the development of any effluent limitation, or other limitation, prohibition, or effluent standard, pretreatment standard, or standard of performance under this Act; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [956] "   (2) determining whether any person is in violation of any such effluent limitation, or other limitation, prohibition or effluent standard, pretreatment standard, or standard of performance, "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [957] "   (3) any requirement established under this Section, or "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [958] "   (4) carrying out sections 305, 311, 402, 404 (relating to State permit programs), 405, and 504 of this Act-- [308(a)(4) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [959] "   (A) the Administrator shall require the owner or operator of any point source to (i) establish and maintain such records, (ii) make such reports, (iii) install, use, and maintain such monitoring equipment or methods (including where appropriate, biological monitoring methods), (iv) sample such effluents (in accordance with such methods, at such locations, at such intervals, and in such manner as the Administrator shall prescribe), and (v) provide such other information as he may reasonably require; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [960] "   (B) the Administrator or his authorized representative (including an authorized contractor acting as a representative of the Administrator), upon presentation of his credentials-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
 [961] "   (i) shall have a right of entry to, upon, or through any premises in which an effluent source is located or in which any records required to be maintained under clause (A) of this subsection are located, and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [962] "   (ii) may at reasonable times have access to and copy any records, inspect any monitoring equipment or method required under clause (A), and sample any effluents which the owner or operator of such source is required to sample under such clause. [308(a)(4)(B) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
 [963] "   (b) Any records, reports, or information obtained under this section (1) shall, in the case of effluent data, be related to any applicable effluent limitations, toxic, pretreatment, or new source performance standards, and (2) shall be available to the public, except that upon a showing satisfactory to the Administrator by any person that records, reports, or information, or particular part thereof (other than effluent data), to which the Administrator has access under this section, if made public would divulge methods or processes entitled to protection as trade secrets of such person, the Administrator shall consider such record, report, or information, or particular portion thereof confidential in accordance with the purposes of section 1905 of title 18 of the United States Code. Any authorized representative of the Administrator (including an authorized contractor acting as a representative of the Administrator) who knowingly or willfully publishes, divulges, discloses, or makes known in any manner or to any extent not authorized by law any information which is required to be considered confidential under this subsection shall be fined not more than $1,000 or imprisoned not more than 1 year, or both. Nothing in this subsection shall prohibit the Administrator or an authorized representative of the Administrator (including any authorized contractor acting as a representative of the Administrator) from disclosing records, reports, or information to other officers, employees, or authorized representatives of the United States concerned with carrying out this Act or when relevant in any proceeding under this Act. [308(b) amended by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [964] "   (c) Each State may develop and submit to the Administrator procedures under State law for inspection, monitoring, and entry with respect to point sources located in such State. If the Administrator finds that the procedures and the law of any State relating to inspection, monitoring, and entry are applicable to at least the same extent as those required by this section, such State is authorized to apply and enforce its procedures for inspection, monitoring, and entry with respect to point sources located in such State (except with respect to point sources owned or operated by the United States). "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
 [965] "   (d) Access by Congress. -- Notwithstanding any limitation contained in this section or any other provision of law, all information reported to or otherwise obtained by the Administrator (or any representative of the Administrator) under this Act shall be made available, upon written request of any duly authorized committee of Congress, to such committee. [308(d) added by PL 100-4]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [966] "  SEC. 309 [33 U.S.C. 1319] Federal Enforcement "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [967] "[EDITOR'S NOTE:  See also Section 318 of PL 100-4, published at the end of this Act, for applicability of this Section to the Unconsolidated Quarternary Aquifer, Rockaway River Basin, New Jersey.]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [968] "   (a)(1) Whenever, on the basis of any information available to him, the Administrator finds that any person is in violation of any condition or limitation which implements section 301, 302, 306, 307, 308, 318, or 405 of this Act in a permit issued by a State under an approved permit program under section 402 or 404 of this Act, he shall proceed under his authority in paragraph (3) of this subsection or he shall notify the person in alleged violation and such State of such finding. If beyond the thirtieth day after the Administrator's notification the State has not commenced appropriate enforcement action, the Administrator shall issue an order requiring such person to comply with such condition or limitation or shall bring a civil action in accordance with subsection (b) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [969] "   (2) Whenever, on the the basis of information available to him, the Administrator finds that violations of permit conditions or limitations as set forth in paragraph (1) of this subsection are so widespread that such violations appear to result from a failure of the State to enforce such permit conditions or limitations effectively, he shall so notify the State. If the Administrator finds such failure extends beyond the thirtieth day after such notice, he shall give public notice of such finding. During the period beginning with such public notice and ending when such State satisfies the Administrator that it will enforce such conditions and limitations (hereafter referred to in this section as the period of \"federally assumed enforcement\"), except where an extension has been granted under paragraph (5)(B) of this subsection, the Administrator shall enforce any permit condition or limitation with respect to any person-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [970] "   (A) by issuing an order to comply with such condition or limitation, or "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [971] "   (B) by bringing a civil action under subsection (b) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [972] "   (3) Whenever on the basis of any information available to him the Administrator finds that any person is in violation of section 301, 306, 307, 308, 318, or 405 of this Act, or is in violation of any permit condition or limitation implementing any of such sections in a permit issued under section 402 of this Act by him or by a State or in a permit issued under section 404 of this Act by a State, he shall issue an order requiring such person to comply with such section or requirement, or he shall bring a civil action in accordance with subsection (b) of this section. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [973] "   (4) A copy of any order issued under this subsection shall be sent immediately by the Administrator to the State in which the violation occurs and other affected States. In any case in which an order under this subsection (or notice to a violator under paragraph (1) of this subsection) is issued to a corporation, a copy of such order (or notice) shall be served on any appropriate corporate officers. An order issued under this subsection relating to a violation of section 308 of this Act shall not take effect until the person to whom it is issued has had an opportunity to confer with the Administrator concerning the alleged violation. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
 [974] "   (5)(A) Any order issued under this subsection shall be by personal service, shall state with reasonable specificity the nature of the violation, and shall specify a time for compliance not to exceed thirty days in the case of a violation of an interim compliance schedule or operation and maintenance requirement and not to exceed a time the Administrator determines to be reasonable in the case of a violation of a final deadline, taking into account the seriousness of the violation and any good faith efforts to comply with applicable requirements. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
 [975] "   (B) The Administrator may, if he determines (i) that any person who is a violator of, or any person who is otherwise not in compliance with, the time requirements under this Act or in any permit issued under this Act, has acted in good faith, and has made a commitment (in the form of contracts or other securities) of necessary resources to achieve compliance by the earliest possible date after July 1, 1977, but not later than April 1, 1979; (ii) that any extension under this provision will not result in the imposition of any additional controls on any other point or nonpoint source; (iii) that an application for a permit under section 402 of this Act was filed for such person prior to December 31, 1974; and (iv) that the facilities necessary for compliance with such requirements are under construction, grant an extension of the date referred to in section 301(b)(1)(A) to a date which will achieve compliance at the earliest time possible but not later than April 1, 1979. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [976] "   (6) Whenever, on the basis of information available to him, the Administrator finds (A) that any person is in violation of section 301(b)(1)(A) or (C) of this Act, (B) that such person cannot meet the requirements for a time extension under section 301(i)(2) of this Act, and (C) that the most expeditious and appropriate means of compliance with this Act by such person is to discharge into a publicly owned treatment works, then, upon request of such person, the Administrator may issue an order requiring such person to comply with this Act at the earliest date practicable, but not later than July 1, 1983, by discharging into a publicly owned treatment works if such works concur with such order. Such order shall include a schedule of compliance. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
 [977] "   (b) The Administrator is authorized to commence a civil action for appropriate relief, including a permanent or temporary injunction, for any violation for which he is authorized to issue a compliance order under subsection (a) of this section. Any action under this subsection may be brought in the district court of the United States for the district in which the defendant is located or resides or is doing business, and such court shall have jurisdiction to restrain such violation and to require compliance. Notice of the commencement of such action shall be given immediately to the appropriate State. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [978] "  "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [979] "   (c) Criminal Penalties.-- [309(c) revised by PL 100-4; amended by PL 101-380]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [980] "   (1) Negligent Violations. -- Any person who-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [981] "   (A) negligently violates section 301, 302, 306, 307, 308, 311(b)(3), 318 or 405 of this Act, or any permit condition or limitation implementing any of such sections in a permit issued under section 402 of this Act by the Administrator or by a State, or any requirement imposed in a pretreatment program approved under section 402(a)(3) or 402(b)(8) of this Act or in a permit issued under section 404 of this Act by the Secretary of the Army or by a State; or [309(c)(1)(A) amended by PL 101-380]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [982] "   (B) negligently introduces into a sewer system or into a publicly owned treatment works any pollutant or hazardous substance which such person knew or reasonably should have known could cause personal injury or property damage or, other than in compliance with all applicable Federal, State, or local requirements or permits, which causes such treatment works to violate any effluent limitation or condition in any permit issued to the treatment works under section 402 of this Act by the Administrator or a State; shall be punished by a fine of not less than $2,500 nor more than $25,000 per day of violation, or by imprisonment for not more than 1 year, or by both. If a conviction of a person is for a violation committed after a first conviction of such person under this paragraph, punishment shall be by a fine of not more than $50,000 per day of violation, or by imprisonment of not more than 2 years, or by both. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [983] "   (2) Knowing Violations. -- Any person who-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [984] "   (A) knowingly violates section 301, 302, 306, 307, 308, 311(b)(3), 318 or 405 of this Act, or any permit condition or limitation implementing any of such sections in a permit issued under section 402 of this Act by the Administrator or by a State, or any requirement imposed in a pretreatment program approved under section 402(a)(3) or 402(b)(8) of this Act or in a permit issued under section 404 of this Act by the Secretary of the Army or by a State; or [309(c)(2)(A) amended by PL 101-380]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [985] "   (B) knowingly introduces into a sewer system or into a publicly owned treatment works any pollutant or hazardous substance which such person knew or reasonably should have known could cause personal injury or property damage or, other than in compliance with all applicable Federal, State, or local requirements or permits, which causes such treatment work to violate any effluent limitation or condition in a permit issued to the treatment works under section 402 of this Act by the Administrator or a State; shall be punished by a fine of not less than $5,000 nor more than $50,000 per day of violation, or by imprisonment for not more than 3 years, or by both. If a conviction of a person is for a violation committed after a first conviction of such person under this paragraph, punishment shall be a fine of not more than $100,000 per day of violation, or by imprisonment of not more than 6 years, or by both. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [986] "   (3) Knowing Endangerment.-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
 [987] "   (A) General Rule. -- Any person who knowingly violates section 301, 302, 303, 306, 307, 308, 311(b)(3), 318 or 405 of this Act, or any permit condition or limitation implementing any of such sections in a permit issued under section 402 of this Act by the Administrator or by a State, or in a permit issued under section 404 of this Act by the Secretary of the Army or by a State, and who knows at that time that he thereby places another person in imminent danger of death or serious bodily injury, shall, upon conviction, be subject to a fine of not more than $250,000 or imprisonment of not more than 15 years, or both. A person which is an organization shall, upon conviction of violating this subparagraph, be subject to a fine of not more than $1,000,000. If a conviction of a person is for a violation committed after a first conviction of such person under this paragraph, the maximum punishment shall be doubled with respect to both fine and imprisonment. [309(c)(3)(A) amended by PL 101-380]"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [988] "   (B) Additional Provisions. -- For the purpose of subparagraph (A) of this paragraph-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [989] "   (i) in determining whether a defendant who is an individual knew that his conduct placed another person in imminent danger of death or serious bodily injury-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
 [990] "   (I) the person is responsible only for actual awareness or actual belief that he possessed; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
 [991] "   (II) knowledge possessed by a person other than the defendant but not by the defendant himself may not be attributed to the defendant; except that in proving the defendant's possession of actual knowledge, circumstantial evidence may be used, including evidence that the defendant took affirmative steps to shield himself from relevant information; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [992] "   (ii) it is an affirmative defense to prosecution that the conduct charged was consented to by the person endangered and that the danger and conduct charged were reasonably foreseeable hazards of-- "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [993] "   (I) an occupation, a business, or a profession; or "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
 [994] "   (II) medical treatment or medical or scientific experimentation conducted by professionally approved methods and such other person had been made aware of the risks involved prior to giving consent; and such defense may be established under this subparagraph by a preponderance of the evidence; "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [995] "   (iii) the term \"organization\" means a legal entity, other than a government, established or organized for any purpose, and such term includes a corporation, company, association, firm, partnership, joint stock company, foundation, institution, trust, society, union, or any other association of persons; and "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
 [996] "   (iv) the term \"serious bodily injury\" means bodily injury which involves a substantial risk of death, unconsciousness, extreme physical pain, protracted and obvious disfigurement, or protracted loss or impairment of the function of a bodily member, organ, or mental faculty. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
 [997] "   (4) False Statements. -- Any person who knowingly makes any false material statement, representation, or certification in any application, record, report, plan, or other document filed or required to be maintained under this Act or who knowingly falsifies, tampers with, or renders inaccurate any monitoring device or method required to be maintained under this Act, shall upon conviction, be punished by a fine of not more than $10,000, or by imprisonment for not more than 2 years, or by both. If a conviction of a person is for a violation committed after a first conviction of such person under this paragraph, punishment shall be by a fine of not more than $20,000 per day of violation, or by imprisonment of not more than 4 years, or by both. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
 [998] "   (5) Treatment of Single Operational Upset. -- For purposes of this subsection, a single operational upset which leads to simultaneous violations of more than one pollutant parameter shall be treated as a single violation. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
 [999] "   (6) Responsible Corporate Officer as \"Person\". -- For the purpose of this subsection, the term \"person\" means, in addition to the definition contained in section 502(5) of this Act, any responsible corporate officer. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
[1000] "   (7) Hazardous Substance Defined. -- For the purpose of this subsection, the term \"hazardous substance\" means (A) any substance designated pursuant to section 311(b)(2)(A) of this Act, (B) any element, compound, mixture, solution, or substance designated pursuant to section 102 of the Comprehensive Environmental Response, Compensation, and Liability Act of 1980, (C) any hazardous waste having the characteristics identified under or listed pursuant to section 3001 of the Solid Waste Disposal Act (but not including any waste the regulation of which under the Solid Waste Disposal Act has been suspended by Act of Congress), (D) any toxic pollutant listed under section 307(a) of this Act, and (E) any imminently hazardous chemical substance or mixture with respect to which the Administrator has taken action pursuant to section 7 of the Toxic Substances Control Act. "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
 [ reached getOption("max.print") -- omitted 1158 entries ]

  1. You’d be surprised how many assignments are turned in without a name on it…↩︎

LS0tCnRpdGxlOiAiQ2hhcmFjdGVyIERhdGEgQWN0aXZpdHkiCmF1dGhvcjogIlJvZG5leSBEeWVyIgpvdXRwdXQ6IGh0bWxfbm90ZWJvb2sKLS0tCgojIyBBc3NpZ25tZW50CgoKTGV0J3Mgc3RhcnQgYnkgbG9hZGluZyBpbiBhIGxpYnJhcnkgdGhhdCBoYXMgc29tZSBzdHJpbmcgZnVuY3Rpb25zIGFuZCB0aGVuIGRvIHNvbWUgc21hbGxlciBzdHVmZiBqdXN0IHRvIHdhcm0gdXAuCgpgYGB7cn0KbGlicmFyeShzdHJpbmdyKQpgYGAKCkluIHRoZSBjb2RlIGNodW5rIGJlbG93LCBjcmVhdGUgYSB2YXJpYWJsZSBjYWxsZWQgYGZpcnN0X25hbWVgIGFuZCBhc3NpZ24gaXQgYSB2YWx1ZSBlcXVhbCB0byB5b3VyIG5hbWUuCgpgYGB7ciBlY2hvPVRSVUV9CmZpcnN0X25hbWUgPC0gIlJvZG5leSIKZmlyc3RfbmFtZQpgYGAKCk5vdywgaG93IGFueSBjaGFyYWN0ZXJzIGFyZSBpbiB5b3VyIG5hbWU/IAoKYGBge3J9CnN0cl9sZW5ndGgoIGZpcnN0X25hbWUgKQpgYGAKCkFzc2lnbiB0aGUgdmFyaWFibGUgYGxhc3RfbmFtZWAgdGhlIHZhbHVlIG9mIHlvdXIgbGFzdCBuYW1lLgoKYGBge3J9Cmxhc3RfbmFtZSA8LSAiRHllciIKYGBgCgpBbmQgaW4gdGhlIGZvbGxvd2luZyBjaHVuY2ssIG1ha2UgYSB2YXJpYWJsZSBuYW1lZCBgZnVsbF9uYW1lYCB0aGF0IGNvbWJpbmVzIHlvdXIgYGZpcnN0X25hbWVgIGFuZCBgbGFzdF9uYW1lYC4KCmBgYHtyfQojIyMgWW91ciBmdWxsIG5hbWUKc3RyX2MoZmlyc3RfbmFtZSwgbGFzdF9uYW1lLCBzZXA9IiAiKQpgYGAKCk5vdyBwYXkgYXR0ZW50aW9uLCB0aGlzIGlzICoqdmVyeSBpbXBvcnRhbnQqKi4gIFRha2UgdGhlIG91dHB1dCBvZiB0aGUgbGFzdCBjaHVuayAoZS5nLiwgeW91ciBmdWxsIG5hbWUpLCBhbmQgKmNvcHkgaXQgdG8gdGhlIDMkXntyZH0kIGxpbmUgb2YgdGhpcyBkb2N1bWVudCB3aGVyZSBpdCBzYXkgYGF1dGhvcjogIllvdXIgTmFtZSBIZXJlImAhKiAgVGhhdCB3YXkgSSBrbm93IHdob3NlIHdvcmsgdGhpcyBpcyEgIE5pY2UgSm9iIV5bWW91J2QgYmUgc3VycHJpc2VkIGhvdyBtYW55IGFzc2lnbm1lbnRzIGFyZSB0dXJuZWQgaW4gd2l0aG91dCBhIG5hbWUgb24gaXQuLi5dCgojIyBTdHJpbmcgT3BlcmF0aW9ucwoKU28gd2UnbGwgaGF2ZSBhIGxpdHRsZSBmdW4gd2l0aCB0aGlzIG9uZS4gIEhlcmUgYXJlIHRoZSBseXJpY3MgdG8gYSBwb3B1bGFyIHNvbmcgZnJvbSB0aGUgQmVldGxlcywgZW50aXRsZWQgKkhleSBKdWRlKi4KCmBgYHtyfQpoZXlKdWRlIDwtICJIZXkgSnVkZSBkb24ndCBtYWtlIGl0IGJhZCBUYWtlIGEgc2FkIHNvbmcgYW5kIG1ha2UgaXQgYmV0dGVyIFJlbWVtYmVyIHRvIGxldCBoZXIgaW50byB5b3VyIGhlYXJ0IFRoZW4geW91IGNhbiBzdGFydCB0byBtYWtlIGl0IGJldHRlciBIZXkgSnVkZSBkb24ndCBiZSBhZnJhaWQgWW91IHdlcmUgbWFkZSB0byBnbyBvdXQgYW5kIGdldCBoZXIgVGhlIG1pbnV0ZSB5b3UgbGV0IGhlciB1bmRlciB5b3VyIHNraW4gVGhlbiB5b3UgYmVnaW4gdG8gbWFrZSBpdCBiZXR0ZXIgQW5kIGFueXRpbWUgeW91IGZlZWwgdGhlIHBhaW4gSGV5IEp1ZGUgcmVmcmFpbiBEb24ndCBjYXJyeSB0aGUgd29ybGQgdXBvbiB5b3VyIHNob3VsZGVycyBGb3Igd2VsbCB5b3Uga25vdyB0aGF0IGl0J3MgYSBmb29sIFdobyBwbGF5cyBpdCBjb29sIEJ5IG1ha2luZyBoaXMgd29ybGQgYSBsaXR0bGUgY29sZGVyIE5hIG5hIG5hIG5hIG5hIE5hIG5hIG5hIG5hIEhleSBKdWRlIGRvbid0IGxldCBtZSBkb3duIFlvdSBoYXZlIGZvdW5kIGhlciBub3cgZ28gYW5kIGdldCBoZXIgbGV0IGl0IG91dCBhbmQgbGV0IGl0IGluIFJlbWVtYmVyIHRvIGxldCBoZXIgaW50byB5b3VyIGhlYXJ0IGhleSBKdWRlIFRoZW4geW91IGNhbiBzdGFydCB0byBtYWtlIGl0IGJldHRlciBTbyBsZXQgaXQgb3V0IGFuZCBsZXQgaXQgaW4gSGV5IEp1ZGUgYmVnaW4gWW91J3JlIHdhaXRpbmcgZm9yIHNvbWVvbmUgdG8gcGVyZm9ybSB3aXRoIEFuZCBkb24ndCB5b3Uga25vdyB0aGF0IGl0J3MganVzdCB5b3UgSGV5IEp1ZGUgeW91J2xsIGRvIFRoZSBtb3ZlbWVudCB5b3UgbmVlZCBpcyBvbiB5b3VyIHNob3VsZGVyIE5hIG5hIG5hIG5hIG5hIE5hIG5hIG5hIG5hIHllYWggSGV5IEp1ZGUgZG9uJ3QgbWFrZSBpdCBiYWQgVGFrZSBhIHNhZCBzb25nIGFuZCBtYWtlIGl0IGJldHRlciBSZW1lbWJlciB0byBsZXQgaGVyIHVuZGVyIHlvdXIgc2tpbiBUaGVuIHlvdSdsbCBiZWdpbiB0byBtYWtlIGl0IGJldHRlciBCZXR0ZXIgYmV0dGVyIGJldHRlciBiZXR0ZXIgYmV0dGVyIGFoIE5hIG5hIG5hIG5hIG5hIG5hIG5hIHllYWggWWVhaCB5ZWFoIHllYWggeWVhaCB5ZWFoIHllYWggTmEgbmEgbmEgbmEgaGV5IEp1ZGUgTmEgbmEgbmEgbmEgbmEgbmEgbmEgTmEgbmEgbmEgbmEgaGV5IEp1ZGUgTmEgbmEgbmEgbmEgbmEgbmEgbmEgTmEgbmEgbmEgbmEgaGV5IEp1ZGUgTmEgbmEgbmEgbmEgbmEgbmEgbmEgTmEgbmEgbmEgbmEgaGV5IEp1ZGUgSnVkZSBKdWRlIEp1ZHkgSnVkeSBKdWR5IEp1ZHkgb3cgd293IE5hIG5hIG5hIG5hIG5hIG5hIG5hIG15IG15IG15IE5hIG5hIG5hIG5hIGhleSBKdWRlIEp1ZGUgSnVkZSBKdWRlIEp1ZGUgSnVkZSBOYSBuYSBuYSBuYSBuYSBuYSBuYSB5ZWFoIHllYWggeWVhaCBOYSBuYSBuYSBuYSBoZXkgSnVkZSB5ZWFoIHlvdSBrbm93IHlvdSBjYW4gbWFrZSBpdCBKdWRlIEp1ZGUgeW91J3JlIG5vdCBnb25uYSBicmVhayBpdCBOYSBuYSBuYSBuYSBuYSBuYSBuYSBkb24ndCBtYWtlIGl0IGJhZCBKdWRlIHRha2UgYSBzYWQgc29uZyBhbmQgbWFrZSBpdCBiZXR0ZXIgTmEgbmEgbmEgbmEgaGV5IEp1ZGUgb2ggSnVkZSBKdWRlIGhleSBKdWRlIHdhIE5hIG5hIG5hIG5hIG5hIG5hIG5hIG9oIEp1ZGUgTmEgbmEgbmEgbmEgaGV5IEp1ZGUgaGV5IGhleSBoZXkgaGV5IE5hIG5hIG5hIG5hIG5hIG5hIG5hIGhleSBoZXkgTmEgbmEgbmEgbmEgaGV5IEp1ZGUgbm93IEp1ZGUgSnVkZSBKdWRlIEp1ZGUgSnVkZSBOYSBuYSBuYSBuYSBuYSBuYSBuYSBKdWRlIHllYWggeWVhaCB5ZWFoIHllYWggTmEgbmEgbmEgbmEgaGV5IEp1ZGUgTmEgbmEgbmEgbmEgbmEgbmEgbmEgTmEgbmEgbmEgbmEgaGV5IEp1ZGUgbmEgbmEgbmEgbmEgbmEgbmEgbmEgbmEgbmEgTmEgbmEgbmEgbmEgbmEgbmEgbmEgTmEgbmEgbmEgbmEgaGV5IEp1ZGUgTmEgbmEgbmEgbmEgbmEgbmEgbmEgTmEgbmEgbmEgbmEgaGV5IEp1ZGUgTmEgbmEgbmEgbmEgbmEgbmEgbmEgeWVhaCBtYWtlIGl0IEp1ZGUgTmEgbmEgbmEgbmEgaGV5IEp1ZGUgeWVhaCB5ZWFoIHllYWggeWVhaCB5ZWFoIFllYWggWWVhaCBZZWFoIFllYWggTmEgbmEgbmEgbmEgbmEgbmEgbmEgeWVhaCB5ZWFoIHllYWggeWVhaCBZZWFoIFllYWggTmEgbmEgbmEgbmEgaGV5IEp1ZGUgTmEgbmEgbmEgbmEgbmEgbmEgbmEgTmEgbmEgbmEgbmEgaGV5IEp1ZGUgTmEgbmEgbmEgbmEgbmEgbmEgbmEgTmEgbmEgbmEgbmEgaGV5IEp1ZGUgTmEgbmEgbmEgbmEgbmEgbmEgbmEgTmEgbmEgbmEgbmEgaGV5IEp1ZGUiCmBgYAoKSSB0aG91Z2h0IGl0IHdvdWxkIGJlIGludGVyZXN0aW5nIHRvIHRha2UgYSBsb29rIGF0IHdvcmQgZnJlcXVlbmNpZXMgZm9yIHRoaXMgc29uZy4gIFRvIGRvIHNvLCB3ZSBzaG91bGQgcHJvYmFibHkgZmlyc3QgbWFrZSBldmVyeXRoaW5nIHRoZSBzYW1lIGNhc2UgKGluIHRoaXMgY2FzZSwgSSdsbCBtYWtlIGl0IGFsbCBsb3dlciBjYXNlIHVzaW5nIHRoZSBmdW5jdGlvbiBgdG9sb3dlcigpYC4KCmBgYHtyfQojIyBUbyByZW1vdmUgY2FzZSBkaWZmZXJlbmNlcy4KbHlyaWNzIDwtIHRvbG93ZXIoaGV5SnVkZSkKYGBgCgojIyBTcGxpdHRpbmcgVGV4dCBpbnRvIFdvcmRzCgpJbiB0aGUgbGVjdHVyZSwgSSBzaG93ZWQgaG93IHRvIHNwbGl0IGEgc3RyaW5nIGludG8gc2VjdGlvbnMgdXNpbmcgdGhlIGZ1bmN0aW9uIGBzdHJfc3BsaXQoKWAgZnVuY3Rpb24uICBTcGxpdCB0aGUgbHlyaWNzIGludG8gYSBzaW5nbGUgdmVjdG9yIGFzIEkgc2hvd2VkIGluIHRoZSByZWNvcmRlZCBsZWN0dXJlIGFuZCBhc3NpZ24gaXQgdG8gYSB2YXJpYWJsZSBuYW1lZCBgd29yZHNgLiAgSW4gdGhlIHRhbGsgSSBwb2ludCBvdXQgdGhhdCB5b3Ugc2hvdWxkIGFkZCB0aGUgb3B0aW9uYWwgYXJndW1lbnQgYHNpbXBsaWZ5PVRSVUVgIHRvIHRoZSBvcHRpb25hbCB2YWx1ZXMgaW4gdGhlIGBzdHJfc3BsaXQoKWAgZnVuY3Rpb24sIG1ha2Ugc3VyZSB0byBkbyB0aGF0IGhlcmUgYXMgd2VsbC4KCmBgYHtyfQojIyMgU3BsaXQgdGhlIGx5cmljcyBpbnRvIGEgdmVjdG9yCndvcmRzIDwtIHN0cl9zcGxpdChseXJpY3MsIHBhdHRlcm4gPSAiICIsIHNpbXBsaWZ5ID0gVFJVRSApCmBgYAoKCiMjIFN1bW1hcml6aW5nIFdvcmQgT3JkZXJzCgpOb3cgaGVyZSBpcyBzb21ldGhpbmcgbmV3LiAgVGhlIGZ1bmN0aW9uIGB0YWJsZSgpYCB0YWtlcyBhIHZlY3RvciBvZiB2YWx1ZXMgYW5kIHRhbGxpZXMgdGhlIGNvdW50IG9mIGVhY2ggZWxlbWVudC4gIEluIHRoaXMgY2FzZSwgaXQgd2lsbCBhbGxvdyB5b3UgdG8gY291bnQgZWFjaCB3b3JkIGluIHRoYXQgc29uZy4gIE1ha2UgYSBuZXcgdmFyaWFibGUgbmFtZWQgYHdvcmQuZnJlcXNgIHRvIGhvbGQgdGhlIHJlc3VsdCBhbmQgdGhlbiBwcmludCBpdCBvdXQgKGJ5IGp1c3QgdHlwaW5nIHRoZSB2YXJpYWJsZSBuYW1lIGJ5IGl0c2VsZiBpbiB0aGUgY2h1bmsgYW5kIHJ1bm5pbmcgdGhlIGNodW5rKS4KCmBgYHtyfQojIyMgTWFrZSBhIHRhYmxlIG9mIHRoZSB3b3JkcyB0byBnZXQgY291bnRzCnQgPC0gdGFibGUoIHdvcmRzICkKdApgYGAKCkhlcmUgaXMgYW5vdGhlciBuZXcgdGhpbmcuICBZb3UgY2FuIHVzZSB0aGUgYHNvcnQoKWAgZnVuY3Rpb24gdG8gc29ydCB0aGUgd29yZCBsaXN0IGJ5IHRoZSBtYWduaXR1ZGUgb2Ygb2NjdXJyZW5jZXMuIEl0IGFsc28gaGFzIGFuIG9wdGlvbmFsIGFyZ3VtZW50IGBkZWNyZWFzaW5nYCB0aGF0IHlvdSBjYW4gc2V0IHRvIGBUUlVFYCBhbmQgaGF2ZSB0aGUgcmVzdWx0cyBwcmVzZW50ZWQgaW4gZGVjcmVhc2luZyBvcmRlci4gIChZb3UgY2FuIHNlZSB0aGUgaGVscCBmaWxlIGZvciBgc29ydCgpYCBieSB0eXBpbmcgaW4gdGhlIGNvbnNvbGUgYD9zb3J0YCBhbmQgaGl0dGluZyByZXR1cm4pLgoKYGBge3J9CiMjIyBTb3J0IHRoZSB3b3JkcyBpbiBkZWNyZWFzaW5nIG9yZGVyLgpyZXYoIHNvcnQoIHQgKSApCmBgYAoKV2hhdCBhcmUgdGhlIGZpdmUgbW9zdCBjb21tb24gd29yZHMgaW4gdGhhdCBzb25nPwoKTGlzdCBvZiB3b3JkcyBpbiBkZWNyZWFzaW5nIGZyZXF1ZW5jeSAocmVwbGFjZSB0aGUge1hYWFh9IHN0dWZmIGJlbG93IHRvIGFuc3dlcjogIAoKMS4ge21vc3QgY29tbW9uIGhhcyBYfSAgYG5hYCBvZiAyMjUKMi4ge3NlY29uZCBtb3N0IGNvbW1vbiBoYXMgWH0gYGp1ZGVgIG9mIDQ3CjMuIHt0aGlyZCBtb3N0IGNvbW1vbiBoYXMgWH0gYGhleWAgZnJvbSAzMwo0LiB7Zm91cnRoIG1vc3QgY29tbW9uIGhhcyBYfSBgeWVhaGAgaGFzIDMyCjUuIHtmaWZ0aCBtb3N0IGNvbW1vbiBoYXMgWH0gYGl0YCBoYXMgYDE4YAoKCiMjIEZpbmRpbmcgTG9jYXRpb25zIGluIHRoZSBTdHJpbmcKCldoZXJlIGlzIGl0IHRoZSBsb2NhdGlvbiBpbiB0aGUgZnVsbCBseXJpY3Mgb2YgdGhlIHNvbmcgd2hlcmUgIkp1ZGUiIGlzIHJlcGVhdGVkIHRocmVlIHRpbWVzPwoKYGBge3J9CnN0cl92aWV3KGhleUp1ZGUsICJKdWRlIEp1ZGUgSnVkZSIgKQpgYGAKCgotLS0KClRoYXQgd2FzIGVhc3ksIG5vdyBsZXQncyBkbyBzb21ldGhpbmcgbW9yZSBpbi1kZXB0aC4gIFRoZSBDbGVhbiBXYXRlciBBY3Qgb2YgMTk3NyBpcyBhbiBpbXBvcnRhbnQgZG9jdW1lbnQgaW4gb3VyIG5hdGlvbnMgcmVjb2duaXRpb24gdGhhdCB3ZSBtYXkgbmVlZCB0byBzdG9wIGJlaW5nIGplcmtzIHRvIHRoZSBlbnZpcm9ubWVudC4gIFRoZXJlIGlzIGEgdGV4dHVhbCBjb3B5IGZvdW5kIG9uIG15IGdpdGh1YiBzaXRlIGF0IHRoZSBmb2xsb3dpbmcgdXJsLgoKTG9hZCBpbiB0aGlzIGRvY3VtZW50IGFuZCB3ZSBjYW4gZG8gc29tZSB0ZXh0dWFsIGZpbmRpbmdzLgoKYGBge3J9CmNsZWFuX3dhdGVyX2FjdCA8LSAiaHR0cHM6Ly9naXRodWIuY29tL2R5ZXJsYWIvRU5WUy1MZWN0dXJlcy9yYXcvbWFzdGVyL2RhdGEvY2xlYW5fd2F0ZXJfYWN0LnR4dCIKdGV4dCA8LSByZWFkTGluZXMoIGNsZWFuX3dhdGVyX2FjdCkKYGBgCgoKClRoZSBDbGVhbiBXYXRlciBBY3QgY29uc2lzdHMgb2YgdHdvIG1haW4gcGFydHMuICBUaGUgZmlyc3Qgb25lIGF1dGhvcml6ZXMgZmVkZXJhbCBmdW5kcyB0byBzdXBwb3J0IHRoZSB0cmVhdG1lbnQgb2Ygc2V3YWdlIGFuZCB0aGUgc2Vjb25kIHBhcnQgZGVmaW5lcyB0aGUgcmVndWxhdG9yeSByZXF1aXJlbWVudHMgZm9yIGluZHVzdHJpYWwgYW5kIG11bmljaXBhbCBkaXNjaGFyZ2Vycy4gIEkndmUgZm9ybWF0dGVkIGl0IHN1Y2ggdGhhdCBlYWNoIHJvdyBpbiB0aGUgZmlsZSBpcyBhIHNpbmdsZSBlbGVtZW50IG9mIHRoZSBhY3QgKGUuZy4sIFNFQy4gMTAxIFszMyBVLlMuQy4gMTI1MV0gcGFyYWdyYXBoIChhKSgxKSBpcyBlbnRpcmVseSBjb250YWluZWQgb24gaXRzIG93biBsaW5lLgoKSG93IG1hbnkgdGltZXMgaXMgdGhlIHdvcmQgYHNld2FnZWAgZm91bmQgKGVpdGhlciBhcyBgc2V3YWdlYCBvciBgU2V3YWdlYCk/CgpgYGB7cn0Kc3VtKCBzdHJfZGV0ZWN0KHRvbG93ZXIodGV4dCksICJzZXdhZ2UiKSApCmBgYAoKVGhlIGdyZWF0IGxha2VzIHdlcmUgaW50aW1hdGVseSBpbnZvbHZlZCBpbiB0aGUgZm9ybXVsYXRpb24gb2YgdGhpcyBBY3QuICBXaGF0IGlzIHRoZSBvZmZpY2lhbCBkZWZpbml0aW9uIG9mIHRoZSBgR3JlYXQgTGFrZXNgIGFzIGl0IHBlcnRhaW5zIHRvIGJvZGllcyBvZiB3YXRlciBjb3ZlcmVkIGJ5IHRoZSBDbGVhbiBXYXRlciBBY3Q/CgpgYGB7cn0KIyBmaW5kIHRoZSBpbmRleCAKaWR4IDwtIHN0cl9kZXRlY3QoIHRleHQsICJHcmVhdCBMYWtlcyIpIAoKYGBgCgoKCgo=